/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Playfair Display', sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: #fff;
    scroll-behavior: smooth;
    background-color: #000;
    /* background-image: url('../img/web-bg.jpg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; */
    max-height: 100%;
    max-width: 100%;
}

#background {
    width: 100vw;
    height: calc(100vh + 100px);
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    background-image: url('../img/webBg.jpg');
    background-size: cover;
    background-position: center -100px;
    background-repeat: no-repeat;
    z-index: -10;
}

/* Links Section */

#social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

#social-links a {
    display: inline-block;
    width: 3rem;
    height: 3rem;
}

#social-links .social-icon {
    width: 100%;
    height: 100%;
    fill: rgb(157, 1, 3);
    /* This will now control the SVG fill color */
    transition: transform 0.3s ease, filter 0.3s ease;
}

#social-links .social-icon:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

#video-download-link {
    display: none;
}

video#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the viewport */
    z-index: -1;
    /* Ensures the video stays behind other content */
}