.carousel {
    display: flex;
    gap: 1rem;
    overflow-y: auto;
    height: 300px;
    padding: 10px 4px;
}

.carousel img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 2px 6px 0 black;
}

