/* -------------------- General Body & HTML Styles -------------------- */
html,
body {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}


/*  -------------------- Rotating Background -------------------- */
#rotating {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 300vh;
    width: 300vw;
    background-image: url('../../assets/images/bg/twinkle.gif');
    background-repeat: repeat;
    background-size: auto;
    overflow: hidden;
    filter: saturate(2);
}


/* -------------------- Full Screen Elements -------------------- */
#stars,
#blue-overlay,
#black-overlay,
#circuit-overlay,
#oscilloscope-overlay,
#glitch-overlay,
#crt-overlay,
#globe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}


/*  -------------------- Overlays -------------------- */
#blue-overlay {
    background: rgb(0, 0, 255);
    mix-blend-mode: multiply;
    overflow: hidden;
}

#black-overlay {
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.411) 10%, rgba(0, 0, 0, 0) 90%);
}

#circuit-overlay,
#oscilloscope-overlay,
#glitch-overlay,
#crt-overlay {
    pointer-events: none;
    opacity: 0.1;
}

#oscilloscope-overlay {
    mix-blend-mode: screen;
}

#glitch-overlay,
#crt-overlay {
    mix-blend-mode: color-dodge;
}

#globe-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

#globe-overlay img {
    position: relative;
    width: auto;
    height: 90vh;
    max-height: 800px;
}



/* -------------------- Main Content -------------------- */
#main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
}

#logo {
    height: 80px;
    animation-delay: 0.2s;
}

#enter {
    height: 40px;
    animation-delay: 1s;
    cursor: pointer;
}

a {
    transition: transform 0.5s ease-in-out, filter 0.3s ease-in-out;
}


a:hover {
    transform: scale(1.1);

}





/* -------------------- Mobile Styles -------------------- */
@media (max-width: 768px) {
    #logo {
        width: 80vw;
        height: auto;
    }

    #enter {
        width: 50vw;
        height: auto;
    }

    #globe-overlay img {
        width: 90vw;
        height: auto;
    }
}