@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;600;700&display=swap');
*, *::before, *::after{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Comfortaa', cursive;
}

::-webkit-scrollbar {
    width: 0;
}

body{
    background: #000;
    min-height: 19000px;
}

.progressbar{
    z-index:9999;
    position: fixed;
    top: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(270deg, #FEDF0D, #E55D03);
}

.scene{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background:#000;
}

.container{
    transition: opacity 0.5s linear, transform 0.3s ease-in-out;
    min-width: 600px;
    padding:20px;
    z-index: 99;
}

.container.hidden{
    opacity: 0;
    transform: translateY(-50px);
}

.container span{
    color:#fff;
}

.one{
    font-size: 4em;
}

.two{
    font-size: 4.6em;
    margin-left: 100px;
    margin-top: 10px;
}

.three{
    font-size: 4.8em;
    margin-left: 40px;
    margin-top: 20px;
}

.layer{
    position: fixed;
}

.layer.background{
    background: url(images/background_img.jpg) center center no-repeat;
    background-size: cover;
    z-index: 2;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    top: -20px;
    left: -20px;
    transition: 0.3s linear;
}

.background.blurred{
    filter: blur(3px);
}

.sun.blurred{
    animation: blurring 5s linear infinite;
}

@keyframes blurring{
    0%{
        filter: blur(7px);
    }
    50%{
        filter: blur(0);
    }
    100%{
        filter: blur(7px);
    }
}

.sun.shining img{
    animation: shine 5s linear infinite;
}

@keyframes shine{
    0%{
        filter: drop-shadow(0px 0px 25px rgba(255,179,39, 1));
    }
    50%{
        filter: drop-shadow(0px 0px 60px rgba(236,109,1, 1));
    }
    100%{
        filter: drop-shadow(0px 0px 25px rgba(255,179,39, 1));
    }
}

.sun{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    z-index: 4;
    transition: 0.1s linear;
}

.sun img{
    border-radius: 50%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.earth{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 3;
    transition: 0.3s linear;
}

.earth img{
    display: block;
    width: 100%;
    height: 100%;   
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0px 0px 10px rgba(113, 192, 237, 1));
}

.moon{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    z-index: 2;
    transition: 0.3s ease;
}

.moon img{
    display: block;
    width: 100%;
    height: 100%;   
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 1));
}

.sun.anim{
    animation: blink 0.5s linear;
}

.sun.anim img{
    filter: drop-shadow(0px 0px 10px rgba(113, 192, 237, 1));
}

.earth.anim{
    animation: blink 0.5s linear;
}

.earth.anim img{
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 1));
}

.moon.anim{
    animation: blink 0.5s linear;
}

@keyframes blink{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.moon.anim img{
    filter: drop-shadow(0px 0px 10px rgba(158,127,250, 1));
}


