/* BODY */
@import url('https://fonts.googleapis.com/css2?family=Anta&display=swap');


body{
    background-color: rgb(0, 0, 0);
    width: 80%;
    margin: 0 auto;
    font-family: "Anta", sans-serif;

    
}

.body_form{
    color: #ffffff;
}

.id_lien{
    color: rgb(0, 0, 0);
}

form{
    padding: 20px;
}
p{
    color: rgb(255, 255, 255);
}

h1, h2, h4, 
h5{
    color: white;
    text-align: center;
}

button{
    font-family: "Anta", sans-serif;
    background-color: white;
    text-align: center;
    margin-top: 10px;
}

input{
    font-family: "Anta", sans-serif;
    background-color: white;
    margin-top: 5px;
}


.boutons{
    display: flex;
    justify-content:center;
}

main{
    text-align: center;
}

a{
    color: grey;
}

/* NAVIGATION / HEADER */

nav 
{
    height: auto;
    background: #000000;
}
 
nav .main_pages {
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
 
nav .main_pages a 
{
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    text-decoration: none;
    color: white;
    border-radius: 10px;

}
 
nav a:hover 
{
    background: #ffffff;
    color: black;
    transition: 0.15s ease-in;
}

label, #toggle{
    display: none;
}

#logo{
    width: 50px;
    padding: 30px;
}
 
@media all and (max-width: 480px) {
    
    label, #toggle {
        display: none;
    }
    
    nav {
        position: relative; /* Ajout */
        height: 60px;
    }
 
    nav .main_pages {
        position: absolute; /* Ajout */
        top: 60px; /* Ajout */
        left: 0; /* Ajout */
        z-index: 999; /* Assure que la div s'affiche au-dessus de tout */ 
        display: none;
        flex-direction: column;
        background: #000000;
        height: 220px;
        width: 100%; /* Ajout */
    }

    nav .main_pages a {
        width: 100%;
        background-color: #ffffff;
        color: #000000;
        border-radius: 0px;
    }

    nav .main_pages a:hover{
        background-color: black;
        color: white;
    }
 
    label {
        width: 30px;
        display: flex;
        font-size: 40px;
        color: white;
        cursor: pointer;
        margin-left: 20px;
    }

    #toggle:checked + .main_pages {
        display: flex;
        background-color: #000000;
        color: white;
    }
}


/* LISTING */

.listing{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.album{
    width: 225px;
    background-color: #ffffff;
    color: #000000;
    padding: 15px;
    margin: 20px;
}

.donnees{
    color: rgb(0, 0, 0);
    font-size: 15px;
    margin-left: 10px;
}

#input_file{
    color: black;
}

/* FOOTER */
/* 
footer{
width: 100%;
background-color: rgb(0, 0, 0);
color: rgb(255, 255, 255);
text-align: center;
font-weight: bold;
position: fixed;

} */



td{
    background-color: #ffffff;
}