@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Poppins";
}
section{
    width: 100vw;
    height: 100vh;
    display: flex;
}
#sec2{
    background-color: whitesmoke;
    color: black;
    padding: 4rem 3rem;
    width: 100vw;
    height: auto;
}
a{
    text-decoration: none;
}
.bg{
    width: 60vw;
}
.bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content{
    width: min-content;
    padding: 3rem;
}
.cnt-txt{
    width: 100%;
}
h1{
    font-weight: 800;
    font-style: normal;
    font-size: 7rem;
    margin: auto;
    line-height: 1;
}

@media screen and (max-width: 800px)
{
    section{
        display: flex;
        flex-direction: column;
    }
    .bg{
        width: -webkit-fill-available;
        height: 70vh;
    }
    .content{
        width: -webkit-fill-available;
        height: 30vh;
        padding: 1rem 2rem;
    }
    h1{
        font-size: 4rem;
    }
}


.lineup-artiste{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.lineup-artiste-cadre{
    width: 200px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}
.lineup-artiste-img{
    width: 200px;
    height: 300px;
    position: absolute;
    z-index: 1;
}
.lineup-artiste-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.lineup-artiste-nom{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: relative;
    z-index: 2;
    background-color: rgb(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lineup-artiste-nom h3{
    text-align: center;
    margin: 0.5rem;
}
.lineup-artiste-cadre:hover .lineup-artiste-nom{
    visibility: visible;
}
.lineup-artiste-nom h3{
    color: white;
}

@media screen and (max-width: 750px)
{
    .lineup-artiste-cadre,.lineup-artiste-img{
        width: 155px;
        height: 245px;
    }
}