body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden; /* Prevent scrolling */
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.top-title {
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
    font-size: 1.8em;
    margin: 0;
    font-family: 'Roboto', sans-serif; /* Using Roboto font */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em; /* Adjust letter spacing as needed */
}

.main-message {
    font-family: 'Merriweather', serif; /* Using Merriweather font */
    font-size: 3.5em; /* Adjust size as needed */
    margin: 0;
    line-height: 1.5; /* Adjust line height if needed */
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
}
