*{
    margin: 0;
    padding: 0;
    font-family: 'manrope', 'Roboto', sans-serif;

}
@font-face {
    font-family: "manrope";
    src: url("manrope/regular.otf");
}

:root {
    --primary-color: #FEE2E2;
    --accent-color: #ffffff;

}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body{
    
    display: flex;
    align-items: center;
    flex-direction: column;
}



/* Header */

header{
    background-image: url("images/header.png");
    background-size: cover;
    height: 30vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    position: relative;
    box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
    z-index: 10;
}

#headertext{
    display: flex;
    flex-direction: column;

    margin-left: 5vw;

    color: var(--accent-color);
    font-size: 1.5em;
    font-weight: 600;

    /*
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    */
}

#nombre{
    /* make it fit content */
    display: block;
    float: right;
    height: 13vw;
    margin-right: 5vw;

}

#bvn{
    color: #FAC020;
    text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5), 2px 2px 2px #000000;

}

#qsts1{
    font-family: 'manrope', sans-serif;
    color: white;
    font-size: 0.4em;
    font-weight: 100;
    font-style: italic;
    

    width: fit-content;
    margin: 2vw;
    margin-left: 0;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #000000;
    border-style: solid;
    border-color: #000000;
    border-width: 1px;
    border-radius: 10px;
}

#qsts2{
    font-family: 'manrope', sans-serif;
    color: rgb(0, 0, 0);
    font-size: 0.4em;
    font-weight: 100;
    font-style: italic;
    

    width: fit-content;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    background-color: #ffffff;
    border-color: #ffffff;
    
}

/* Main */

#menu{
    background-color: #ffffff;
    padding-top: 5vh;
    padding-bottom: 5vh;
    /*height: 50vh;*/
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.subsections{
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 50vw;
    /*height: 100%;*/

    margin: 7vw;
    padding: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border-style: solid;
    border-color: #00000000;
    border-width: 1px;
    border-radius: 50px;

    text-align: center;
    font-size: 1.5em;
    font-style: normal;
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-family: 'Manrope' !important;

}

#centres{
    background-color: #f76ca8;
}

#prevention{
    background-color: #fac020;
}

#histoire{
    background-color: #07bd6e;
}

#numeros{
    background-color: #0bbad9;
}

#associations{
    background-color: #e0554d;
}

/* Footer */

hr{
    width: 80%;
    margin-bottom: 2vh;
    border: 1px solid #000000;

    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

footer{
    width: 100%;
    text-align: center;
    align-items: center;
}

#logosfooter{
    background-color: #ffffff;

    width: 100%;
    display: block;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    position: relative;
}



.logosorgas{
    width: 15vw;
    margin-left: 5vw;
    margin-right: 5vw;
    margin-bottom: 5vw;
    max-width: 170px;
}

#textfooter{
    margin-left: 4vw;
    margin-bottom: 1vw;
    text-align: left;
    font-size: 1.2em;
}





@media screen and (max-width: 600px) {
    #nombre{
        display: none;
    }
    #bvn{
        font-size: 0.8em;
    }
    #qsts1{
        font-size: 0.35em;
    }
    #qsts2{
        font-size: 0.35em;
        margin-right: 5vw;
    }

    

    .subsections{
        font-size: 0.8em;
        width: 80vw;
    }

    #textfooter{
        font-size: 0.8em;
        margin-bottom: 0;
    }

}
    
