
body {
    background: #000A2E;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat';
    font-size: 22px;
}

img {
    vertical-align: middle;
    border-style: none;
}

#starsLeft {
    position: absolute;
    left: 0px;
    top: 5%;
    opacity: 0.7;
    z-index: 2;
}

#starsRight {
    position: absolute;
    z-index: 2;
    right: 0px;
    top: 5%;
    opacity: 0.7;
}

#mainDiv {
    color: #ffffffef;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 8;
    align-items: center;
    justify-content: center;
    display: flex!important;
    flex-direction: column!important;
}

#logo {
    height: 35vh;
    vertical-align: middle;
    border-style: none;
    box-sizing: border-box;

}

#MainText {
    color: #ffffffef;
    text-align: center!important;
}

h1 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0;
}

.safari-text {
    margin-top: -40px;
    font-size: small !important;
}

.primary-button {
    width: 200px;
    height: 45px;
    background: linear-gradient(90deg, #FAAA47 0%, #FA1801 100%);
    background-size: 200% 200%;
    border-radius: 5px;
    border: none;
    outline: none;
    color: #ffffffef;
    cursor: pointer;
    box-shadow: 0 0 0 #FAAA47;
    transition:2s background-color;
    animation: Animation 2s ease infinite;
}

.primary-button#load-status-display-btn {
    height: 5px;
    line-height: 3;
    cursor: auto;
}


@keyframes Animation {
    0%{background-position:0% 0%}
    50%{background-position:100% 0%}
    100%{background-position:0% 0%}
}


.clouds {
    position: absolute;
    bottom: 0;
    width: 101%;
}

#cloudLeftTop {
    position: absolute;
    top: -10%;
    left: -20px;
    z-index: 1;
}

#cloudBottomRight {
    position: absolute;
    bottom: 10%;
    right: -20px;
    z-index: 1;
}

.night {
    position: relative;
    width: 100%;
    height: 100%;
    transform: rotateZ(45deg);
}

.shooting_star {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 1px;
    background: linear-gradient(-45deg, rgba(95, 145, 255, 1), rgba(0, 0, 255, 0));
    border-radius: 999px;
    filter: drop-shadow(0 0 6px rgba(105, 155, 255, 1));
    animation:
            tail 3000ms ease-in-out ,
            shooting 3000ms ease-in-out ;
    animation-fill-mode: forwards;
}

@keyframes tail {
    0% {
        width: 0;
    }

    30% {
        width: 100px;
    }

    100% {
        width: 0;
    }
}

@keyframes shooting {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(300px);
    }
}
