body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px;
}

.image-item {
    position: relative;
    margin-right: 75px;
    margin-top: 50px;

}

.image-item img {
    display: block;
    width: 700px; /* Adjust the width as needed */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.image-item .description {
    font-family: 'Roboto Regular';
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-wrap: wrap;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    text-align: left;
    padding: 5px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.image-item:hover .description {
    font-size: 20px;
    opacity: 1;
}

/* Optional: Hide scrollbar for a cleaner look */
.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.scroll-container.stylescapes .image-item img {
    width: 1200px; /* New width for large images */
}

.scroll-container.covers .image-item img {
    width: 500px; /* New width for large images */
}

.scroll-container.badges .image-item img {
    width: 350px; /* New width for large images */
}