
body {
    margin: 0;
    font-family: sans-serif;
    overflow: hidden; /* Hide scrollbars */
    color: white;
    text-align: center;
}

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

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo img {
    height: 50px; /* Adjust as needed */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

.content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    padding: 20px;
}

.main-title {
    width: 80%; /* Adjust as needed for responsiveness */
    max-width: 600px;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.buttons .btn {
    display: block;
    width: fit-content;
    margin: 15px auto;
    padding: 15px 30px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.buttons .btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 10;
}

.social-links a {
    color: white;
    font-size: 1.8em;
    margin: 0 10px;
    text-decoration: none;
}

.social-links a:hover {
    opacity: 0.7;
}

footer p {
    font-size: 0.9em;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 15px;
    }

    nav ul li {
        margin: 0 10px;
    }

    .main-title {
        width: 90%;
    }

    .content h2 {
        font-size: 1.2em;
    }

    .buttons .btn {
        width: 90%;
        max-width: 300px;
    }

    .social-links a {
        font-size: 1.5em;
    }
}

