/* Basic reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    overflow: hidden;  /* Prevents scrolling */
}

/* Fullscreen video background */
.fullscreen-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center; /* This centers the video in the viewport */
}

.fullscreen-bg__video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transition: 1s opacity;
}

/* Ensuring the video fills the screen while maintaining aspect ratio */
video {
    vertical-align: middle;
    position: relative; /* Changed from 'fixed' to 'relative' */
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transition: 1s opacity;
}

/* Footer containing social links */
.social-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.6); /* semi-transparent black background */
    z-index: 200;
}

.social-links a {
    margin: 0 6vw;
    color: #ffffff; /* White color for icons */
    font-size: 4vw; /* Icon size */
    transition: color 0.3s;
}

.social-links a:hover, .social-links a:focus {
    color: #f0f0f0; /* Light grey color on hover/focus */
    text-decoration: none;
}

.social-links i {
    vertical-align: middle;
}

