html, body {
    height: 100%;
    margin: 0;
}


body{
    font-family: "Asimovian", sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: black;
}

/* MAIN */

h1{
    text-align: center;
    font-size: 3em;
    color: white;
}

h2{
    font-weight: normal;
    text-align: center;
}

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

.contenu{
    display: flex;
    flex-direction: column;
    background-color: black;
}

.titre{
    font-size: 2em;
    transition: all 1s;
}

section {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: auto;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    min-height: 200px;
    padding: 20px;


    transition: all 1s;
}



.sous-sections{
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: center ;
}

.sous-section{
    border-bottom: 1px solid white;
    border-top: 1px solid white;
    backdrop-filter: blur(10px);
}

.sous-section h2{
    width: 100%;
    text-align: center;
    transition: all 1s;
}

.policeTrucadub{
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
}

p{
    color: white;
    width: 70%;
    text-align: center;
    margin: 50px auto 0 auto ;
    font-size: 1.4em;
}


/* HEADER */

header{
    color: white;

    padding-top: 30px;
    padding-bottom: 30px;

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


header img{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    text-align: center;
}



/* FOOTER */

footer{
    /* background-image: 
    linear-gradient(to bottom, #000000 0%, transparent 30%), 
    url("../images/photos/Trucadub-1241.webp");

    background-position: 0 90%;
    background-size: cover; */
    bottom: 0;
    width: 100%;
    padding-top: 15px;
}

footer p {
    color: white;
    font-size: small;
    text-align: center;

    margin: 0 auto 0 auto;
    padding: 15px;
}


/* ACTUALITE */

#actualite{
    background-image: 
    linear-gradient(to bottom, #000000 0%, transparent 30%, transparent 70%, #000000 100%),
    url("../images/photos/Trucadub-1241.webp");

    background-position: 0% 20%;
    margin: 100px 0 100px 0;
    padding: 10%;
    background-size: cover;

}

#actualite .sous-section{
    padding: 30px;
}

.list-liens{
    width: 500px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
    padding: 50px;
}

.lien{
    width: 45px;
    height: 45px;
    border-radius: 50px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lien img{
    width: 30px;
    height: 30px;
}


/* MUSIQUE */

#musique{
    background-image: 
    linear-gradient(to bottom, #000000 0%, transparent 30%, transparent 70%, #000000 100%),
    url("../images/photos/Trucadub-1241.webp");

    background-position: 0% 80%;
    margin: 100px 0 100px 0;
    background-size: cover;
}

#musique .sous-section{
    width: 40%;
    margin: 50px;
    padding: 10px;
}

.sous-section img{
    width: 100%;
}


/* MEDIA QUERIES */

@media (max-width:1000px){
    header img{
        width: 200px;
        height: 200px;
    }

    #actualite, #musique{
        margin: 50px 0 50px 0;
    }

    #actualite{
        background-position: 0% 0%;
    }   

    #musique{
        background-position: 100% 0%;
    }  

    .sous-sections{
        display: flex;
        flex-direction: column;
        justify-content: center ;
    }

    #musique .sous-section, #boutique .sous-section{
        width: 100%;
        margin: 50px auto 50px auto;
        padding: 10px;
    }

    .list-liens{
        width: 300px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0px;
    }

    .list-liens{
        width: auto;
    }

    .lien{
        margin: 15px;
    }


}