body{
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;

}

nav{
    width: 100%;
    height: 10vh;
    background: #E4CD6F;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    z-index: 99;
}
nav a.retour{
    color: #fff;
    font-size: 2rem;
}
nav i{
    margin: 20px;
}
nav .links a{
    color: #000;
    margin: 0 10px;
}
.cover{
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.cover.about{
    background: url("../img/about.jpg");
}
.cover h1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-transform: uppercase;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    padding: 20px;
    border: 2px solid #fff;
}
.cover a{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    padding: 10px;
    border: 2px solid #E4CD6F;
    background: black;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.cover a:hover{
    text-decoration: underline;
}
.cover a i{
    font-size: 2rem;
    margin: 0 10px;
    color: #E4CD6F;
}

.contain{
    width: 80%;
    margin: 0px auto;
    text-align: justify;
}
.contain h2{
    color: blue;
    box-sizing: border-box;
    color: #ad9c57;
}
.contain p{
    margin-bottom: 50px;
}
.contain .join-links{
    color: orangered;
    font-size: 1.2rem;
}

.diner-img{
    width: 80%;
}

.contain .steps{
    width: 100%;
    height: 300px;
    display: flex;
    margin-bottom: 50px;
}
.contain .steps div{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 10px;
}
.contain .steps div i{
    font-size: 5rem;
    margin: 10px 0;
}
.contain .steps div span{
    font-size: 1.5rem;
}
.contain .steps div p{
    text-align: center;
}
.contain .steps div:hover{
    background: black;
    color: #fff;
}


.contain .calendrier{
    font-size: 1.3rem;
}
.contain .calendrier i {
    color:rgb(111, 149, 55);
}


