html {
	background: url(../images2/black_background.jpg) center fixed;
  background-repeat: repeat-y -x;
	font-family: monospace;
	margin: 20px;
  color: white;
}
/* Menu Burger */
#menu__toggle {
	opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
	transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
	top: 0;
	transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
	top: 0;
	transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
	left: 0 !important;
}
.menu__btn {
	position: fixed;
	width: 25px;
	height: 25px;
	cursor: pointer;
	z-index: 1;
	left: 25px;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: white;
	transition-duration: .25s;
}
.menu__btn > span::before {
	content: '';
	top: -8px;
}
.menu__btn > span::after {
	content: '';
	top: 8px;
}
.menu__box {
	display: block;
	position: absolute;
	top: 0px;
	left: -100%;
	width: 250px;
	height: 100%;
	margin: 0;
	padding: 80px 0;
	list-style: none;
	background-color: black;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
	transition-duration: .25s;
}
.menu__item {
	display: block;
	padding: 12px 50px;
	color: white;
	font-family: monospace;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
	transition-duration: .25s;
}
.menu__item:hover {
	background-color: gray;
}
/* Fin Menu Burger */
/* Clock */
footer{
	height: 60px;
	font-size: 15px;
	display: flex;
	justify-content: space-around;
}
/* Fin Clock */
/* En-tête */
.logo{
	width: 200px;
	height: 200px;
}
.header {
  display:flex;
	align-items: center;
	justify-content: center;
}
.title{
	display: flex;
  width: 1000px;
	justify-content: center;
  background-color: #2d2e8b;
  border-color: white;
	border-style: solid;
	border-radius: 50px;
  opacity: 70%;
}
.menu__btn{
	top: 53px;
}
/* Fin En-tête */
/* Contenu */
p{
	padding: 10px;
	font-size: 15px;
	flex: 2;
}
h2, h3{
	display: flex;
	justify-content: center;
}
/* Fin Contenu */
/* Alignement */
.content{
	display: flex;
	gap: 10px;
	align-content: space-around;
	flex-grow: 2;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;

}
.content_contact{
	display: flex;
	gap: 10px;
	align-content: space-around;
	flex-grow: 2;
	align-items: center;
	flex-direction: row;
}
.content_reverse{
	display: flex;
	gap: 10px;
	align-content: space-around;
	flex-grow: 2;
	align-items: center;
  flex-direction: row-reverse;
}
/* Fin Alignement */
#contacts{
  color: blue;
  text-decoration: underline;
  text-align: right;
}
p:not(#contacts,.label), img:not(.logo, .tierimg){
	border-width: 2px;
	border-color: white;
	border-style: solid;
	border-radius: 6px;
}
.Tierlist{
	display: flex;
	justify-content: center;
}
.tierimg{
	margin: 5px;
}
.img-contact{
	height: 300px;
}
.label{
	font-style: italic;
}
