.carousel {
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, #000 20% 80%, transparent);
}

.track {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    /* gap: 30px; */
    height: auto;
    pointer-events: none;
    transition: transform 0.2s ease-in-out;
}

.track-item {
    min-width: 500px;
    width: 30%;
    margin: 0 15px;
}

.carousel-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.carousel-buttons > .left-button {
    transform: rotate(180deg);
}

.carousel-buttons > .left-button:hover {
    transform: rotate(180deg) scale(1.5);
}

.carousel-buttons > .right-button:hover {
    transform: scale(1.5);
}

.carousel-buttons > button {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    border-radius: 20px;
    height: 5rem;
    width: 5rem;
    transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 650px) {
    .track-item {
        min-width: 75%;
        height: auto;
    }
}
