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

html,
body {
    height: 100%;
    background: #e8a0cb80;
    font-family: 'Acumin Pro', sans-serif;
    font-weight: 600;
    margin: 0;
    padding-top: 7vw;
}

body {
    display: flex;
    flex-direction: column;
}

header {
    height: 6.5%;
    width: 100%;
    display: flex;
    background-color: white;
    margin-bottom: 1vh;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #e8a0cb;
    justify-content: space-between;

}

img {
    width: 40px;
    margin-left: 5vw;
}

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

#menu-burger {
    font-size: 2.5em;
    color: white;
    cursor: pointer;
    padding-right: 23px;

}


#menu-burger:active {
    color: #e8a0cb80;
}

.nav-liens,
.nav-liens-qui {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 999;
    right: 0;
    width: 40vw;
    height: 100%;
    background-color: #e8a0cb;
    justify-content: flex-end;
    line-height: 3.5;
    top: 39px;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}



.nav-liens.active,
.nav-liens-qui.active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
    margin: 0;
    padding: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;

}


.nav-liens li,
.nav-liens-qui li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    padding: 4vw;
}


.nav-liens a,
.nav-liens-qui a {
    text-decoration: none;
    color: white;
    font-size: 20px;
}

/*TITRES*/
.titre-accueil {
    background-image: url("img/nyc.jpg");
}

.titre-qui {
    background-image: url("img/canyon.png");
}

.titre-accueil,
.titre-qui,
.titre-contact, .titre-prix  {
    width: 100vw;
    height: 50vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: white;
    display: flex;
    flex-direction: column;
    font-size: 6vw;
    text-align: center;
    justify-content: center;
    align-items: center;
    letter-spacing: 1vw;
}


.titre-contact h1, titre-prix h1{
    color : rgb(0, 0, 0);

}

.titre-accueil h2 {
    font-size: 11vw;
    font-weight: 100;
}

/*PAGE QUI SUIS-JE*/
.page-qui {
    background: #9addee80;

}

.photo-moi {
    width: 50vw;
    height: 110vw;
    background-image: url("img/anaelle.png");
    background-size: cover;
    background-position: center;
    margin-top: -40vw;
}

.banniere {
    background: #FAF3B2;
    display: flex;
    justify-content: space-between;
    font-size: 3.3vw;
    padding: 1vw 5vw;
}

.presentation {
    padding: 5vw 5vw;
    font-weight: 100;
    font-size: 4vw;

}

.cv {
    background-color: #daa4a380;
    color: white;
    border-radius: 30px;
    width: 45vw;
    text-align: center;
    display: flex;
    align-self: center;
    font-weight: 100;
    font-size: 3.5vw;
    padding: 4vw;
    margin: 5vw;
}

a.cv {
    text-align: center;
    display: flex;
    justify-content: center;
}

.qui {
    background-color: #9addee;
}

.contact {
    background: #daa4a3;
}

.projets {
    background: #faf3b2;
}

/*PAGE PROJETS*/

/*PAGE PRIX*/
.page-prix {
    background: #FAF3B280;
}


.photo-prix {
    background-image: url('img/my_climate.png');
    height: 100vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.page-prix p,
.page-prix h2 {
    margin: 2vw 5vw;

}

.page-prix p {
    font-size: 4vw;
    font-weight: 100;
}

.page-prix>.legende {
    font-size: 3vw;
}

.img-adventura {
    display: grid;
    flex-direction: column;
    grid-template-columns: 1fr 2fr;
}

.mascotte {
    width: 20vw;
    margin-top: 5vw;
}

.mockup-MC {
    width: 90vw;
    display: flex;
}


/*PAGE CONTACT*/
.page-contact {
    background: #daa4a380;
    display: flex;
    justify-content: center;
    align-items: center;
}



/*pictos*/
.pictos i {
    font-size: 17vw;
    margin-right: 7vw;
    display: flex;
    flex-direction: column;
    align-self: center;

}

.nom,
.tel,
.mail {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 6vw;
    margin-bottom: 25vw;
    letter-spacing: 1vw;
    justify-content: center;
}

.mail {
    border-radius: 40vw;
    background-color: #9addee;
    padding: 6vw;
}

.page-contact footer {
    width: 100%;
}

.qui,
.contact,
.projets {
    border-radius: 41px;
    font-size: 12vw;
    text-align: center;
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 20px;
    margin-top: 16vw;
    width: 80vw;
}


.nav {
    display: flex;
    justify-self: center;
    align-self: center;
    flex-direction: column;
}

footer {
    background-color: #e8a0cb;
    font-size: 10vw;
    height: 10vw;
    margin: 0;
    margin-top: auto;
    text-align: end;
    padding-right: 4vw;


}

footer i {
    font-size: 7vw;
    color: #faf3b2;

}