html, body {
    padding: 0;
    margin: 0;
}

.app_earth {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000000;
    position: absolute !important;
}

.home_earth {
    width: 80%;
    background-color: #000000;
}


#glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 100vh;
    height: 100vh;
    max-height: 100vw;
    transform: translate(-50%, -50%);

    background: radial-gradient(ellipse at center, rgba(0,156,255,0) 33%,rgba(0,156,255,0.12) 50.5%,rgba(0,156,255,0.05) 51.75%,rgba(0,156,255,0) 70%);
    z-index: 200;
    pointer-events: none;
}


#res {
    width: 0;
    height: 0;
    overflow: hidden;
}



.pulse-overlay {
    width: 7%;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    transform-origin: center center;
    background: radial-gradient(ellipse at center, rgba(50,187,255,0.6) 0%, rgba(50,187,255,0.2) 25%, rgba(50,187,255,0) 70%);
}
.pulse-overlay::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.pulse-now {
    opacity: 1;
}
.earth-occluded.pulse-now {
    opacity: 0;
}

