/* General Styling */
body {
    background-color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    text-align: center;
}

.container {
    padding: 80px 0;
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image {
    max-width: 100%;
    height: auto;
}

.button-container {
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #e2233e;
    color: #ffffff;
    font-size: 1.2rem; /* Relative font size */
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 20px; /* Adjusted for smaller scaling */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    max-width: 90%; /* Prevents button from becoming too large */
    box-sizing: border-box;
}

.cta-button:hover {
    background-color: #c71d34;
}

/* Add media query to handle very small screens */
@media (max-width: 400px) {
    .cta-button {
        font-size: 1rem; /* Scale font size further for tiny screens */
        padding: 8px 16px; /* Adjust padding for small screens */
    }
}

