*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    background-color: #131311;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#gallery{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#gallery-main{
    display: flex;
    margin: 24px ;
    gap: 30px;
    flex-wrap: wrap;
}

.gallery-img{
height: 400px;
width: 420px;
outline: 2px white solid;
object-fit: fill;
display: none;
opacity: 0;
}

img{
    height: 400px;
    width: 420px;
}

button{
    outline: 3px solid white;
border-radius: 24px;
border: none;
padding: 5px;
background-color: transparent;
color: white;
width: 200px;

}

.d0{
    transition: 0.7s;
    opacity: 1;
}
.d1{
    transition: 1s;
    opacity: 1;
}
.d2{
    transition: 1.3s;
    opacity: 1;
}
.d3{
    transition: 1.6s;
    opacity: 1;
}
.d4{
    transition: 1.9s;
    opacity: 1;
}
.d5{
    transition: 2.2s;
    opacity: 1;
}
.d6{
    transition: 2.2s;
    opacity: 1;
}
.d7{
    transition: 1.6s;
    opacity: 1;
}

.active{
    display: block;
    
}