*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111e24;
    /* background: #7ebad6; */
    flex-direction: column;
    gap: 40px;
}
.boxes{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 500px;
    border: 3px solid #fff;
    padding-bottom: .8rem;
    flex-direction: column;
}
@media screen and (max-width: 500px) {
    body{
        padding: 0 30px;
    }
    .boxes{
        width: 100%;
    }
}
.gallery{
    /* width: 100%;
    height: 400px; */
    display: flex;
    justify-content: space-evenly;
    align-content: start;
    flex-wrap: wrap;
    gap: 5px;
}
.boxImage{
    width: calc(100% / 3 - 10px);
    height: 100px;
    object-fit: cover;
}
.filledBox{
    width: 100%;
    height: 200px;
}
.filledBox img{
    width: 100%;
    height: 100%;
}

