* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    /* Changed to white */
}

.video-container {
    position: relative;
    width: 80%;
    margin: 0 auto;
    height: 100vh;
    /* Full viewport height for vertical centering */
    /* Approximate height to keep it significant */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    /* Ensure it's above background */
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    /* Optional: adds a nice touch */
}

.content {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.content h1 {
    color: #65a3c0;
    /* Extracted blue color */
    font-family: 'Lora', serif;
    /* Changed to Lora */
    font-size: 4rem;
    /* Slightly larger */
    letter-spacing: 5px;
    /* Reduced spacing for tighter, bolder look */
    font-weight: 300;
    /* Boldest available for Lora */
    text-transform: uppercase;
    /* Removed text-shadow for cleaner look on white */
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 2rem;
        letter-spacing: 5px;
    }
}