@font-face{
    font-family: Sunshine-Orange;
    src: url(../fonts/sunshine-orange.otf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-image: url(../img/fond.png);
    backdrop-filter: grayscale(100%);
    transition: all 0.2s ease-in-out;
}

#landing{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.title-cont{
    width: 50%;
    height: 300px;
    margin-top: 10%;
}

.title-cont img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.start-cont {
    padding: 1rem;
    font-family: 'Roboto', sans-serif;   
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    width:12%;
    text-align: center;
    transition: all 0.2s ease-in-out;
    background-color: white;
    border: transparent 3px solid;
    color: black ;
    cursor: pointer;
}

.start-cont:hover{
    background: none;
    color: white;
    border: 3px solid white;
    transform: scale(1.02);
}

footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    width: 100vw;
    padding: 20px;
    position: absolute;
    bottom: 0;
}

.mmi-cont{
    width: 8%;
    height: 100%;
}

.mmi-cont img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.univ-cont{
    width: 10%;
    height: 100%;
}

.univ-cont img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.createur{
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

#chemin{
    height: 100vh;
    display: none;
    flex-direction: row;
    justify-content: center;
    padding: 20px;
}

.answers-cont{
    width: 100%;
    position: relative;
    display: flex;
    padding: 20px;
}

.answers{
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#answer1{
    position: absolute;
    top:45%;
    left:3%
}

#answer2{
    position: absolute;
    top:60%;
    left:46.5%;
}

#answer3{
    position: absolute;
    top:35%;
    left:80%;
}

.answers{
    background: none;
    border:none;
    width:auto;
    color: white !important;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    font-size: 1rem;
    max-width: 400px;
}

.answers:hover{
    border-bottom: 3px solid white;
}

.question-cont{
    position: absolute;
    background: url(../img/cadrev3.png);
    background-size:auto;
    padding: 20px;
    width: 450px;
    height: 129px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.question{
    font-family: Sunshine-Orange, sans-serif;
    color:rgb(95, 95, 95);
    font-size: 2rem;
    text-align: center;
    margin-top: 15px;
}