
/* CSS V2.0
 * Copyright 2025 Nicolas von Auw, all rights reserved
 * Edition Flexbox
 * Conteneur: body
 * Eléments: header, nav, section, main, footer, div
 */
 
@media screen {
		body {
			height: 100%;
			width: 100%;
			margin: auto;
			font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
			background-color: rgba(0,0,0,0.75);			
		}
		


		/* NAV --------------------------- */	
	nav {
			height: 40px;
			width: 100%;
			background-color: rgba(0,0,0,0.25);
			display: flex;
			justify-content: start; /* Centre horizontalement */
			align-items: center; /* Centre verticalement */
		}
	
		nav ul {
			font-size: 100%;
		}

		nav li {
			font-size: 100%;
			color: rgba(0,100,200,1);
			display: inline-block;
			padding-left: 30px;
		}

		nav a, nav a:visited {
			color: rgba(0,100,200,1);
			text-decoration: none;
			border: solid 2px rgba(0,100,200,1);
			border-radius: 5px 5px 5px 5px;
			padding-top: 2.5%;
			padding-bottom: 2.5%;
			padding-left: 7%;
			padding-right: 7%;
		}

		nav a:hover {
			color: rgba(100,130,255,1);
			text-decoration: none;
		}


		/* HEADER --------------------------- */	
	header {
		padding-top: 40px;
		height: 100px;
		width: 100%;
		background-color: rgba(0,0,0,0);
		display: flex;
		justify-content: left; /* Centre horizontalement */
		align-items: center; /* Centre verticalement */
		position: fixed;
		}			
		
	header img {
		height: 100px;
		width: auto;
		margin-left: 5%;
	}

		/* MAIN --------------------------- */	
		main {
			min-height: 100vh;
			width: 100%;
			background-color: rgba(255,255,255,0);
			display: flex;
	    	flex-direction: column;
			padding-top: 140px;
		}

		main table {
			border-collapse: collapse;
			margin-left: 2.5%;
			margin-right: 2.5%;

		}
		
		main td:first-child, th:first-child {
			border-top: solid 0px rgba(100,100,100,1);
			border-left: solid 0px rgba(100,100,100,1);
			border-right: solid 1px rgba(100,100,100,1);
			border-bottom: solid 1px rgba(100,100,100,1);
		}
		
		main td, th {
			border-top: solid 0px rgba(100,100,100,1);
			border-left: solid 0px rgba(100,100,100,1);
			border-right: solid 1px rgba(100,100,100,1);
			border-bottom: solid 1px rgba(100,100,100,1);
		}
		
		main th {
			background-color: rgba(0,0,0,0.1);	
		}
		
		main td:last-child, td:last-child {
			border-top: solid 1px rgba(100,100,100,1);
			border-left: solid 1px rgba(100,100,100,1);
			border-right: solid 0px rgba(100,100,100,1);
			border-bottom: solid 1px rgba(100,100,100,1);		
		}
		
		main ul, ol {
			text-align: left;	
		}
		
		main li {
			padding-bottom: 0.5%;
		}
		
		main a, main a:visited {
			color: rgba(0,130,255,1);
			text-decoration: none;
			font-style: italic;
		}

		main a:hover, button:hover {
			color: rgba(150,200,255,1);
			text-decoration: none;
		}


		/* FOOTER --------------------------- */
		footer {
			height: 2.5%;
			width: 100%;
			display: flex;
			justify-content: start; /* Centre horizontalement */
			align-items: center; /* Centre verticalement */
			position: fixed;
			bottom: 0px;
			left: 0px;
			text-align: left;
			padding-left: 2.5%;
			font-size: 80%;
			font-style: italic;
			background-color: rgba(0,0,0,0.25);
		}
		

		h1 {
			color: rgba(0,130,255,1);
			font-size: 160%;
			padding-left: 2.5%;
			text-align: left;
			font-style: normal;
			font-weight: bold;
			text-decoration: none;	
		}

		h2 {
			color: rgba(0,130,255,0.75);
			font-size: 130%;
			padding-left: 2.5%;
			text-align: left;
			font-style: normal;
			font-weight: bold;
			text-decoration: none;	
		}

		h3 {
			color: rgba(0,130,255,0.5);
			font-size: 110%;
			padding-left: 2.5%;
			text-align: left;
			font-style: normal;
			font-weight: bold;
			text-decoration: none;	
		}
		p {
			font-size: 100%;
			padding-left: 2.5%;
			text-align: left;
			font-style: normal;
			font-weight: normal;
			text-decoration: none;	
		}
		
		figcaption {
			font-size: 100%;
			text-align: center;
			font-style: italic;
			font-weight: normal;
			text-decoration: none;	
		}
		
		figure a, figure a:visited, figure a:hover {
			text-decoration: none;	
		}
		
		address {
			font-size: 100%;
			margin-left: 2.2%;
			text-align: left;
			font-style: italic;
			font-weight: normal;
			text-decoration: none;			
		}
		
		button {
			font-size: 100%;
			text-align: left;
			font-style: italic;
			font-weight: normal;
			text-decoration: none;
			color: rgba(0,130,255,1);
			background-color: rgba(0,0,0,0);
			border: none;
		}
		button:hover, button:after {
			color: rgba(150,200,255,1);
			border: none;
			text-decoration: underline;
		}

		.button {
			height: 40px;
			width: 40px;
			border: solid 2px rgba(125,125,125,1);
			border-radius: 10px 10px 10px 10px;
		}
		
		div {
			display: flex;
			justify-content: left;
			align-items: start;
		}
		
	@media (prefers-color-scheme: dark) {
		p, ul, ol, address, legend, a, a:hover, a:visited, footer {
			color: rgba(220,220,220,1);	
		}
	}

	@media (prefers-color-scheme: light) {
		body {
			background-color: rgba(255,255,255,1);
		}
		p, ul, ol, address, legend, a, a:hover, a:visited, footer {
			color: rgba(40,40,40,1);
		}
		
		footer {
			background-color: rgba(0,0,0,0.25);
			color: rgba(255,255,255,1);
		}
		
	}
}