.header {
    padding: 3rem 4rem;
}

.header .short_dips {
    margin: 1rem 0;
    font-size: 1.123rem;
    line-height: 1.5rem;
    font-family: var(--normal_fonts);
    text-align: center;
}

.successors_albums{
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 1rem;
    height: auto;
    padding: 0 2rem 2rem;
}

.items{
    border: 1px solid red;
    height: 20rem;
    border-radius: 10px;
    overflow: hidden;
}

.items:nth-child(1){
    grid-column-start: 1;
    grid-column-end: 3;

}

.items:nth-child(6){
    grid-column-start: 3;
    grid-column-end: 5;
}

.items a img{
    /* margin-top: -1rem; */
    object-fit: cover;
    width: 100%;
    height: 100%;
     transition: transform 0.4s ease;
}

.items:hover a img{
    transform: scale(1.1);
}



@media screen and (max-width:768px) {
    .header{
        padding:3rem;
    }
    .header .short_dips{
        font-size: 1rem;
    }
    
}
@media  screen and (max-width:528px) {

    .successors_albums{
        grid-template-columns: auto auto ;
    }

    .items:nth-child(1), .items:nth-child(6){
        grid-column-start: 1;
        grid-column-end:3 ;
    }
    
}

@media screen and (max-width:448px) {

    .header{
        padding: 3rem 2rem;
    }

    .header .short_dips{
        font-size: .9rem;
    }
}