/* styles.css */

/* General styles for all links in the navigation bar */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

nav a {
    text-decoration: none;
    color: #fff;
    padding: 15px;
    display: block;
}

/* Specific styles for YouTube and Discord links */
nav a[href="https://www.youtube.com"],
nav a[href="https://discord.gg/your-invite-code"] {
    font-family: 'YourOtherFont', sans-serif;
    color: #000;
    text-shadow: 0 0 10px #fff; /* Adjust the shadow values for the desired glow effect */
}

/* Video container and background video */
#video-container {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* WIESEL text */
#wiesel-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    font-family: 'YourCoolFont', sans-serif;
    color: #000;
    text-shadow: 2px 2px 4px #fff;
    opacity: 0;
    animation: popOut 1s ease-out forwards;
}

@keyframes popOut {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

/* Volume controls container */
#controls-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    color: #fff;
}

/* Volume slider */
#volume-slider {
    margin-right: 10px;
}
