.box{
    min-height: calc(100vh - 63px);
    background-color: whitesmoke;
}

.album-container{
    max-width: 95%;
    width: 28%;
    height: 350px;
}

.album{
    width: 100%;
    height: 250px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.album img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

.album img:nth-of-type(1) {
    top: 10px;
    left: 10px;
    filter: blur(3px) grayscale(1);
    box-shadow: none;
}

.album:hover img:nth-of-type(1){
    top: 15px;
    left: 15px;
}

.album img:nth-of-type(2){
    filter: blur(1px) grayscale(0.5);
}

.album img:nth-of-type(3){
    top: -10px;
    left: -10px;
}

.album:hover img:nth-of-type(3) {
    top: -15px;
    left: -15px;
}

.album-head{
    height: 100px;
    width: 100%;
    font-weight: bold;
    color: #be000f;
    font-size: 20px;
}

@media screen and (max-width: 992px){
    .box{
        min-height: calc(100vh - 55.6px);
    }
}

@media screen and (max-width: 920px){
    .album-container{
        width: 45%;
    }
}

@media screen and (max-width: 650px) {
    .album-container {
        width: 70%;
    }
}

@media screen and (max-width: 450px) {
    .album-container {
        width: 90%;
    }
}