html, body{
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Poppins";
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #63687a;
    background-color: rgb(245, 248, 255);
}

#width{
    width: 80%;
}

p{
    margin: 0;
    
}

#nav a{
    margin-left: 30px;
    color: #63687a;
}

header div h1{
    color: rgb(255, 65, 32);
}

a{
    text-decoration: none;
}

header{
    border-bottom: 1px solid #63687a5a;
    height: 100px;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}



section{
    width: 100%;
}

#spectacles{
    height: 1200px;
}


section h2{
    font-size: 30px;
    margin-top: 100px;
    text-align: left;
    color: rgb(33, 33, 56);
}


#container{
    margin-top: 130px;
    width: 1200px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3 colonnes */
    gap: 40px; /* Espacement entre les carrés */
}


.vignette, .vignetteGris{
    position: relative;
    background-color: white;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
    width: 300px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(41,25,159,0.23); 
    box-shadow: 0px 0px 5px 0px rgba(41,25,159,0.23);
    transition: 0.3s;
}






.vignette h2{
    font-size: 23px;
}


.vignette:hover{
    scale: 1.03;
}

.vignette img{
    width: 300px;
    height: auto;
}

.vignette div:not(.blur){
    padding: 15px;
    margin-top: -110px;
    height: 200px;
}

.blur{
    padding: 0px;
    background: linear-gradient(0deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.824), rgba(255, 255, 255, 0));
    position: absolute;
    width: 100%;
    height: 40%;
    bottom: 0;
    left: 0;
    z-index: 10000;
}


footer{
    width: 100%;
    height: 200px;
    background-color: rgb(17, 17, 27);
    display: flex;
    align-items: center;
    justify-content: center;
}