.roulette__items {
    display: flex;
    flex-wrap: wrap;
}

.roulette__item {
    border-radius: 20px;
    border: 1px solid #1E2A35;
}

.roulette__item-name {
    margin-bottom: 20px;
    text-align: center;
}

.roulette__item-image img{
    border-bottom: 4px solid #1E2A35;
}

.roulette__item-image {
    margin-bottom: 16px;
}

.roulette__item-label {
    text-align: center;
    margin-bottom: 20px;
}

.roulette__button {
    margin-top: 40px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 18px;
    min-width: 300px;
}

@media screen and (min-width: 991px) {
    .roulette__items {
        gap: 20px;
    }

    .roulette__item {
        flex-basis: calc((100% - 20px) / 2);
        padding: 14px;
    }

    .roulette__item-image img{
        border-radius: 20px;
    }
}

@media screen and (max-width: 990.98px) {
    .roulette__items {
        gap: 40px;
        flex-direction: column;
    }

    .roulette__item {
        padding: 14px 16px;
    }

    .roulette__item-image picture {
        display: block;
        width: 100%;
    }

    .roulette__item-image img{
        border-radius: 14px;
        width: 100%;
    }
}

@media screen and (max-width: 440px) {
    .roulette__button {
        min-width: 100%;
    }
}
