<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">header {
	background:  #d7dbdd;
	height: 100px;
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: row;
	align-items: center;
}

#logo{
	position: absolute;
	width: 150px;
	height: 90px;
	right: 10px;
	top: 12px;
}

#nom {
	position: absolute;
	top: 10px;
	left: 10px;
}
nav {
	display: flex;
	flex-direction: column;
	align-items: left;
	position: fixed;
	width: 200px;
	justify-content: space-between;
	background: #d7dbdd;
	border: solid 2px black;
	top:150px;
}

nav a {
	color: black;
	text-decoration: none;
}

section{
	margin-left: 250px;
    display: flex;
    flex-direction:column;
    align-items: center;
	flex-wrap: wrap;
	width: 1000px;
}

.OneTable {
	border: 2px solid;
	text-align: center;
}

.td {
	color:red;
}
header h1{
	text-decoration: underline;
}

header img {
    width: 100px;
    height: 60px;
}

h2 {
	color:red;
	text-decoration: underline;
	text-align: center;
}

footer {
	margin-left: 300px;
}

footer h3, a {
	font-size: 20px;
	display: flex;
	flex-direction:column;
}

p {
	align-self: left;
}</pre></body></html>