body{
	font-family: 'Merriweather', serif;
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    margin: 0;
    padding: 0;
    background-color: black;
}
a{
	text-decoration: none;
	color: white;
	display: flex;
    justify-content: space-around;
    align-items: center;
}
.section{
	background-image: url(../assets/images/fond.png);
	background-size: cover;
	background-repeat: no-repeat;
	height: 100vh;
	width: 100%;
	background-position: center;
	position: relative;
	animation-iteration-count: 1;
	animation-delay: 0.5s;
}
.bloc{
	width: 300px;
	display: block;
	margin: 20vh auto;
	position: relative;
	top: -90px;
	animation-iteration-count: 1;
	animation-delay: 0.3s;
}
.title{
	font-size: 50px;
	font-weight: 700;
}
.btn{
	height: 70px; 
    width: 200px;
    padding: 3px;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #ff7300;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    display: block;
    font-size: 30px;
    
    color: white;
    margin: auto auto;
}
.logobtn{
	width: 50px;
	height: 50px;
	animation-name: 
}
@keyframes changepage{
	0%{
		transform: translateX(0);
		opacity: 1;
	}
	70%{
		transform: translateX(-100%);
		opacity: 0;
	}
	100%{
		transform: translateX(-200%);
	}
}
.animationbtn{
	animation-name: changepage;
	animation-timing-function: ease-out;
	animation-fill-mode: both;
	animation-duration: 1s;
}
