/*page créée par Leon Imeraj / 06-DECEMBRE-2023*/

@media screen and (min-width: 1001px) {
body {
    margin: 0;
    padding: 0;
    font-family: "ADLaM Display", sans-serif;
    background-color: #ff8a84;
    overflow-x: hidden;
}

header{
    display: flex;
}

h1, h2{
        color: black;
        margin: 50px;
    }

nav{ 
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #ff5d55;
    font-size: 25px;
    overflow-x: hidden;
    }

nav div:hover {
        background-color: #ffb4b0; /* Couleur de fond au survol */
    }

#menuActif{
        background-color: #ffb4b0;
    }

nav div{
    padding-top: 20px;
    padding-bottom: 20px;
    flex: 1;
    color: black;
    text-decoration: none;
    display: flex;
    justify-content: center;
}
nav a{
    color: black;
    text-decoration: none;
}

.legende{
    margin-left: 50px;
    margin-right: 30px;
    display: inline-block;
}

.imageLogo{
    margin-left: 50px;
    margin-right: 30px;
    width: 450px;
}

div p{
    text-align: justify;
    margin: 50px;
}

article{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
}

/* POUR LES MOBILES */
@media screen and (max-width: 1000px) {
    body {
        margin: 0;
        padding: 0;
        font-family: "ADLaM Display", sans-serif;
        background-color: #ff8a84;
    }
    header{
        display: none;
    }
    
    h1, h2 {
            color: black;
            margin: 50px;
            font-size: 24px;
        }

    div p{
        text-align: justify;
        margin: 50px;
    }
    
    nav{ 
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: #ff5d55;
        font-size: 15px;
        }
    

    
    #menuActif{
            background-color: #ffb4b0;
        }
    
    nav div{
        padding-top: 20px;
        padding-bottom: 20px;
        flex: 1;
        color: black;
        text-decoration: none;
        display: flex;
        justify-content: center;
    }
    nav a{
        color: black;
        text-decoration: none;
    }
    
    .imageLogo, .legende{
        display: none;
    }
    
    article p{
        text-align: justify;
    }
    
    article{
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    }
