/* Reset default styles */
* {
    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: 169px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px; /* Added margin for spacing */
}

/* Story Section */
.story {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px; /* Set maximum width */
    margin: 0 auto; /* Center the .story container horizontally */
    background-color: #f1f1f1;
    padding: 20px; /* Add some padding to the container */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

.story img {
    padding-top: 20px;
    width: 100%; /* Make the image responsive */
    max-width: 920px; /* Limit the maximum width of the image */
    height: auto; /* Maintain aspect ratio */
}

/* Word Section */
.words p {
    padding: 20px;
    color: #000000;
    font-family: "Roboto", sans-serif; /* Added generic fallback font */
    font-weight: 500;
    font-size: 26px;
    text-align: left; /* Optional: Center align text for better readability */
    line-height: 1.6; /* Added line height for better text spacing */
}

.buttons {
    padding-bottom: 20px;
    display: flex;           /* Use Flexbox for layout */
    justify-content: center; /* Center buttons horizontally */
    align-items: center;     /* Center buttons vertically */
    flex-direction: column;  /* Stack the buttons vertically (optional) */
}

.sale-ticket {
    text-align: center;
    background-color: #DC136c; /* Set button background color */
    color: #f1f1f1;           /* Text color */
    padding: 12px 24px;       /* Button padding */
    font-size: 16px;           /* Font size */
    border-radius: 20px;      /* Rounded corners */
    cursor: pointer;          /* Makes the button clickable */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effect */
    width: 200px;              /* Fixed width for the button */
    text-decoration: none;     /* Remove underline */
    margin: 10px 0;            /* Optional: Adds space between the buttons */
}
.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 */
}
/* Media Queries for Responsiveness */

/* Tablets and smaller screens */
@media (max-width: 768px) {
    .title h1 {
        font-size: 80px; /* Reduced title size for smaller screens */
    }

    .story img {
        max-width: 100%; /* Ensure image takes up full width on smaller screens */
    }

    .words p {
        font-size: 20px; /* Adjust text size for readability */
        padding: 15px; /* Add more padding for small screens */
    }

    .sale-ticket {
        width: 80%; /* Make the button width responsive */
        font-size: 14px; /* Reduce font size for smaller screens */
    }
}

/* Small screens (smartphones) */
@media (max-width: 480px) {
    .title h1 {
        font-size: 60px; /* Smaller title size for very small screens */
    }

    .words p {
        font-size: 18px; /* Further reduce text size for small screens */
    }

    .sale-ticket {
        width: 90%; /* Ensure the button adjusts to smaller screen sizes */
    }
}
