
/* CSS V2.0
 * Copyright 2025 Nicolas von Auw, all rights reserved
 * Edition Flex-box
 * Conteneur: body
 * Eléments: nav, main, footer, div
 */
 
@media screen {
		body {
			height: 100%;
			width: 100%;
			margin: auto;
			font-family: "Quicksand", sans-serif;
			background-image: url('https://www.vonauw.com/data/img/backgrounds/background-jack_stark.webp');
			background-position: top center;
			background-size: cover;
			background-attachment: fixed;
		}
		


		/* NAV --------------------------- */	
	nav {
			font-size: 100%;
			height: auto;
			width: 100%;
			background-color: rgba(0,0,0,0.9);
			display: inline-block;
			justify-content: flex-start; /* Centre horizontalement */
			align-items: center; /* Centre verticalement */
			position: fixed;
			top: 0;
			left: 0;
			box-shadow: -5px 3px 10px 0px rgba(0,0,0,0.3);
		}
	
		nav li img {
			height: auto;
			width: 3%;
			padding-left: 7%;
		}
		nav li {
			color: rgba(255,255,255,1);
			display: inline-block;
			padding-left: 5%;
		}

		nav a, nav a:visited {
			color: rgba(255,255,255,1);
			text-decoration: none;
			background-color: none;
		}

		nav a:hover {
			color: rgba(255,255,255,0.3);
			text-decoration: none;
			background-color: none;
		}

		/* MAIN --------------------------- */	
		main {
			min-height: 100vh;
			width: 100%;
			background-color: rgba(0,0,0,0.75);
			display: flex;
	    	flex-direction: column;
			margin-top: 50px;
			padding-top: 2.5%;
			padding-bottom: 5%;
		}

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

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

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


		/* FOOTER --------------------------- */
		footer {
			color: rgba(255,255,255,1);
			height: 2.5%;
			width: 100%;
			background-color: rgba(0,0,0,0.75);
			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;
		}
		
		/* TEXTUALS --------------------------- */
		h1, h2, h3, h4, h5, h6, p, main ul, main ol, address, legend, main a, main a:hover, main a:visited, dl {
			color: rgba(220,220,220,1);
		}

		h1 {
			font-size: 160%;
			padding-left: 2.5%;
			text-align: left;
			font-style: normal;
			font-weight: bold;
			text-decoration: none;	
		}

		h2 {
			font-size: 130%;
			padding-left: 2.5%;
			text-align: left;
			font-style: normal;
			font-weight: bold;
			text-decoration: none;	
		}

		h3 {
			font-size: 110%;
			padding-left: 2.5%;
			text-align: left;
			font-style: normal;
			font-weight: bold;
			text-decoration: none;	
		}
		dt {
			font-size: 100%;
			padding-left: 2.5%;
			text-align: left;
			font-style: normal;
			font-weight: bold;
			text-decoration: none;	
		}
		dd {
			font-size: 100%;
			padding-left: 3%;
			text-align: left;
			font-style: normal;
			font-weight: normal;
			text-decoration: none;	
		}
		p {
			font-size: 100%;
			padding-left: 2.5%;
			padding-right: 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,0,255,1);
			background-color: rgba(0,0,0,0);
			border: none;
		}
		button:hover, button:after {
			border: none;
			text-decoration: underline;
		}
		
		div {
			display: flex;
			justify-content: left;
			align-items: start;
		}

		footer a, footer a:visited {
			color: rgba(200,200,200,1);
			text-decoration: none;
		}
		footer a:hover {
			color: rgba(200,200,200,0.4);
			text-decoration: none;
		}
			
}