/* Reset default styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    text-align: center;
    color: white;
}

/* Background Video Container */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay for Transparency */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92); /* Adjust transparency here */
}

/* Main Content */
.content {
    position: relative;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

.logo {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.message p {
    font-family: 'Telegraf';
    font-size: 1.5em;
    margin: 10px 0 0 0; 
    padding-top: 30px;
    color: white;
    text-align: center;
}

.message a {
    color: white; /* Ensure anchor link is always white */
    text-decoration: none; /* Remove underline */
}

.message a:hover {
    text-decoration: underline; /* Add underline on hover */
}

.highlight {
    position: relative;
    display: inline-block;
    
}
.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%; /* Highlight the bottom half */
    background-color: rgba(74, 246, 38, 0.4); /* Green color with 30% opacity */
    z-index: -1; /* Place the highlight behind the text */
}

@media (max-width: 600px) {
    .logo {
        max-width: 80%; /* Make the logo smaller on mobile devices */
    }
    .message p {
        font-size: 1.2em; /* Make the text smaller on mobile devices */
    }
}