* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #000000;
}

.main {
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: column;
}

.title {
    text-align: center;
}

.title h1 {
    color: #f1f1f1;
    font-size: 150px;
    font-weight: 900;
}

.title p {
    color: #f1f1f1;
    font-size: 79.5px;
    font-weight: 700;
}

.ticket-promo {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sale {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.sale h1 {
    font-weight: 700;
    font-size: 57.8px;
}

.sale-ticket {
    text-align: center;
    background-color: #DC136c; /* Set button background color */
    color: #f1f1f1; /* Text color */
    padding: 12px 24px; /* Reduced padding for a smaller button, but still with decent spacing */
    font-size: 16px; /* Slightly smaller font for a better look */
    border-radius: 20px; /* Rounded corners */
    cursor: pointer; /* Makes it clear the button is clickable */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Add transition for smooth hover effect */
    width: 200px; /* Ensures button width adjusts to content */
    text-decoration: none;
}

/* Hover effect */
.sale-ticket:hover {
    background-color: #333; /* Change background color when hovering */
    transform: scale(1.05); /* Slight scale up effect for visual interaction */
    color: #f1f1f1; /* Ensure text color stays readable */
}

.lineup img {
    width: 100%;
    height: auto;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .ticket-promo {
        flex-direction: column; /* Stack the divs vertically on smaller screens */
        align-items: center; /* Center the items */
    }

    .sale button {
        width: 50%; /* Make the button 50% of the container's width */
        padding: 15px 25px;
    }

    /* Ensure sale div goes under the image on smaller screens */
    .lineup {
        order: 1; /* Make lineup div first */
        width: 100%; /* Ensure the lineup div takes the full width */
    }

    .sale {
        order: 2; /* Ensure sale div is below the image */
        width: 100%; /* Ensure the sale div takes full width */
        margin-top: 20px; /* Add margin to create space between the image and sale div */
    }
}

@media (max-width: 480px) {
    .sale h1 {
        font-size: 40px; /* Make the title smaller on very small screens */
    }

    .ticket-promo {
        flex-direction: column; /* Stack the divs vertically */
        align-items: center; /* Center the items */
    }

    .lineup, .sale {
        width: 100%; /* Ensure both divs take full width */
    }

    .sale button {
        width: 70%; /* Button takes up 70% of the width on smaller screens */
        padding: 12px 20px; /* Adjust padding */
    }
}
@media (max-width: 1024px) {
    .title h1 {
        font-size: 120px; /* Reduce title size for tablets */
    }
}

/* For Smaller Screens (like smaller tablets and large phones) */
@media (max-width: 768px) {
    .title h1 {
        font-size: 70px; /* Reduce title size further */
    }
    .title p{
        font-size: 50px;
    }
}

/* For Very Small Screens (like phones in portrait mode) */
@media (max-width: 480px) {
    .title h1 {
        font-size: 30px; /* Make title smaller for very small screens */
    }
    .title p{
        font-size: 30px;
    }
}