/*    Content of the page*/

#presentation {
    background-color: white;
    width: 60vw;
    height: 71vh;
    border: 0.3vh solid #0074e6;
    margin-top: 10vh;
    overflow-y: auto;
    font-size: 1vw;
    padding-top: 5vw;
}

#presentation h2 {
    text-align: center;
    font-size: 1.5vw;
    color: #0074e6;
}

#presentation h3 {
    text-align: center;
    padding: 1vw;
}

#presentation .eu {
    border-right: 1px solid #0074e6;
    float: left;
    width: 33%;
}

#presentation .wad {
    float: right;
    width: 65%;
}

#presentation a {
    color: #0074e6;
    text-decoration: none;
}

@media (max-width: 850px) {
    #presentation {
        width: 90vw;
        font-size: 3vw;
    }
    
    #presentation h2 {
        font-size: 4vw;
    }
}

@media (max-width: 425px) {
    #presentation {
        width: 90vw;
        margin-left: -10vw;
    }

    #presentation .eu {
        border-right: 1px solid white;
        float: none;
        width: 90%;
    }
    
    #presentation .wad {
        float: none;
        width: 90%;
    }
}