/* Carousel */
.carousel {
    margin-top: 0vh;
    margin-bottom: 1vh;
    width: 95%;
    height: 37.5em;
    display: flex;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
    align-items: center;
}

.carousel::-webkit-scrollbar {
    display: none;
}

@keyframes spin {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    animation: spin 150s linear infinite;
    padding-right: 1em;
}


.card {
    aspect-ratio: 3/4;
    width: 10em;
    padding: 0em;
    font-size: 2rem;
    border-radius: 0.8em;
    text-align: center;
    align-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 1s ease;
}

.card img {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* .card:hover {
    width: 25em;
    border-radius: 0.8em;
    transition: 1s ease;
} */
