* {
	font-family: Helvetica;
	font-weight: normal;
	box-sizing: border-box;
}

body {
	margin: 0 auto;
	height:100vh;
	overflow: hidden;
	display:flex;
}

h1{
	margin:0px;
}

p{
	margin:0;
}

a{
	color:white;
	text-decoration: none;
}

.part{
	display:inline-block;
	position: relative;
	width:50%;
	height:100%;
	font-size: 25px;
}

.part h1{
	font-size: 25px;
}

.part a:hover{
	color:black;
	cursor: url(cursor-09.png), auto;
}

#left-side{
	background-color: #0055ff;
	color:white;
	cursor: url(cursor-09.png), auto;
}

#right-side{
	color:black;
	cursor: url(cursor-09.png), auto;
}

#left-footer{
	position: absolute;
	bottom:0px;
	padding: 10px;
	width:100%;
}

.footer-elt{
	display:inline-block;
}

#lang-button{
	float:right;
	padding:10px;
}

ul{
	list-style: none;
	margin:0px;
	padding:0px;
}

li a{
	text-decoration: none;
	color: white;
	text-align: right;
}

.current{
	display:none;
}
.next{
	display:block;
}

#left-header{
	padding: 10px;
}

#left-header h1{
	width:100%;
}

#first{
	display:block;
}

#second{
	display:none;
}

#first:hover + #second{
	display: block;
}

#right-header{
	width:100%;
	height: 200px;
}

.meteo-elt{
	display:inline-block;
	padding: 10px;
	height:100%;

}

.meteo-elt img{
	object-fit: contain;
	height:100%;
}
#speed{
	animation: rotation 8s linear infinite;
}

#direction{
	float:right;
	transition: 1s ease;
	/* transform: rotate(100deg); */
}

#right-footer{
	position: absolute;
	bottom:0px;
	padding: 10px;
}

#infos-button:hover{
	color:black;
}

@keyframes rotation {
	from {
		-webkit-transform: rotate(0deg);
} to {
		-webkit-transform: rotate(360deg);
}
}

#info-block{
	position: fixed;
	width:100%;
	height:100%;
	top:100%;
	left:0px;
	background-color: rgba(0,0,0, 1);
	color: white;
	cursor: url(cursor_white.png), auto;
	font-size: 20px;
	transition: 0.8s;
}

#info-block h1{
	font-size: 20px;
}

#info-wrapper{
	position: relative;
	display:flex;
	height:100%;
}
#info-contact{
	padding:10px 10px 10px 50px;
}

#info-photo{
	position: absolute;
	top:0px;
	right:0px;
	max-width: 300px;
	float:right;
}

#info-photo img{
	max-width: 100%;
	float:right;
	padding:15px;
}

.info-part{
	display: inline-block;
	width:40%;
	padding:10px;
	max-width: 600px;
}

.info-part p{
	margin: 10px 0px;
}

#info-footer{
	position: absolute;
	bottom:0px;
	width:100%;
	height:50px;
	left:0px;
	padding:10px;
}

#info-footer img{
	max-height: 100%;
	display: inline-flex;
}

#info-footer p{
	position: absolute;
	right: 0px;
	display: inline-flex;
	line-height: 30px;
	padding: 0px 10px;
	font-size: 15px;
}


#info-block a:hover{
	color: #fc5e03;
}

@media screen and (max-width: 870px){
	body{
		position: fixed;
	}


	.part{
		display:block;
		width:100vw;
		height:50vh;
		position:absolute;
	}

	#right-side{
		margin-top:50vh;
	}

	*{
		font-size: 19px;
	}

	.part h1{
		font-size:19px;
	}

	#right-header {
    height: 45vw;
	}

	#lang-button{
		margin-top: 50vh;
		transform: translate(0%, -100%);
	}

}

@media screen and (max-width: 950px){
	#info-wrapper {
		display: block;
	}
	#info-photo{
		display:none;
	}

	.info-part{
		width:100%;
		display: block;
		max-width: none;
		padding: 60px 10px 10px 10px;
	}

	#info-contact{
		padding:10px;
	}

	#info-footer{
		top:0px;
	}

	#info-footer p{
		display:none;
	}
}
