.tickets {
    display: flex;
    justify-content: center;
    background-image: url(https://escapequicketticketbb1d.blob.core.windows.net/escape-images/Transparent-Man-Background.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #040303;
    box-sizing: content-box;
}
.ticket-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 5rem;
    flex-wrap: wrap;
    align-items: center;
    width: 70rem;
    gap: 1rem;
}

@media (max-width: 1150px) {
    .ticket-wrapper {
        justify-content: center;
    }
}

@media (max-width: 735px) {
    .tickets{
        background-image: none;
    }
    .ticket-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1em;
    }
}
