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

.video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100vw; 
    height: 100vh;
    z-index: -100;
}

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

.content {
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Adjusting content to be centered vertically, now that footer is removed */
    height: 100%;
}

header {
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 120px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.social-icons a {
    color: white;
    font-size: 2em;
}
