/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap');

/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Main Container */
.main_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f9f9f9;
    padding: 20px;
}

/* Logo Styling */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

#tony_img {
    max-width: 100%;
    height: auto;
    max-height: 135px; /* Adjust as needed */
}

/* Content Styling */
.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.thank_you_title {
    font-size: 60px; /* Big uppercase text */
    font-weight: 400; /* Light */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.lead {
    font-size: 30px !important; /* Approximately half the size of the title */
    font-weight: 400; /* Light */
    margin-bottom: 10px;
    text-transform: none; /* Sentence case */
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .thank_you_title {
        font-size: 36px !important;
    }

    #tony_img {
        max-width: 80%;
        height: auto;
        max-height: 135px; /* Adjust as needed */
    }

    .logo {
        margin-bottom: 40px;
    }

    .lead {
        font-size: 18px !important;
    }
}

@media (max-width: 768px) {
    .thank_you_title {
        font-size: 42px !important;
    }

    .lead {
        font-size: 20px !important;
    }
}
