body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Countdown Styles */
#countdown {
    font-size: 5em; /* Larger and bolder */
    font-weight: bold;
    color: #fff; /* Adjust color as needed */
    text-align: center;
    margin-bottom: 30px; /* Space before the typewriter text */
}

/* Typewriter Text Styles */
#typewriter {
    font-size: 1.5em; /* Adjust size as needed */
    color: #fff; /* Adjust color as needed */
    text-align: center;
    margin-bottom: 20px; /* Space before the RSVP button */
}

/* RSVP Button Styles */
#rsvpButton {
    display: block;
    width: 200px; /* Adjust width as needed */
    margin: 0 auto; /* Center align the button */
    margin-top: 20px; /* Space from the above element */
    font-size: 1.2em;
    padding: 15px 20px;
    background-color: #000000;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#rsvpButton:hover {
    background-color: #0056e8;
}

/* Mobile Optimizations */
@media only screen and (max-width: 768px) {
    #countdown {
        font-size: 2em; /* Smaller size for mobile */
    }

    #typewriter {
        font-size: 1em; /* Adjust for mobile */
    }

    #rsvpButton {
        width: auto; /* Full-width for smaller screens */
        padding: 10px 15px;
        font-size: 1em;
    }
}


.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#heroVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.text-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.text-content h1 {
    font-size: 3em;
    font-weight: bold;
    margin: 0;
}

#typewriter {
    font-size: 1.5em;
    margin-top: 20px;
    border-right: 2px solid white;
    white-space: nowrap;
    overflow: hidden;
}
