*{
    box-sizing:border-box;
}

body{
    background-image: url(anime-images/pink-paper-texture-background-design-vector\ \(1\).jpg);
}

.top{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.top img{
    width:100%;
    max-width:800px;
    height:auto;
}

.container{
    display:flex;
    flex-direction:column;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:20px;
    height:auto;
    width:auto;
    padding:100px;
}

.shelf{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.item{
    display:flex;
    width:300px;
    height:200px;
    cursor:pointer;
    transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.item:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba (0,0,0,0.3);
}

.item img{
    object-fit:fill;
    width:300px;
    height:200px;
}