/* Eclipse Home */

.sun {
    top: 50%;
    left: 50%;
    height: 200px;
    width: 200px;
    position: absolute;
    background-color: orange;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px orange, 0 0 60px orange, 
    0 0 200px yellow, inset 0 0 80px yellow;

}

.moon {
    top: 1px;
    left: 10px;
    height: 200px;
    width: 200px;
    position: absolute;
    background-color: #272829;
    border-radius: 50%;
    box-shadow: inset 0 0 50px rgba(150, 150, 150, 0.2);
    animation: eclipse 10s infinite linear;
    transform-origin: 50% 150%;

}


    @keyframes eclipse {
        0% {
        transform: rotate(-60deg);
    }
    60% {
        transform: rotate(30deg);

    }
    100% {
        transform: rotate(300deg);

    }
}

body {
    font-family: 'Space Mono', monospace;
    font-size: 20px;
    line-height: 1.5;
    background: #000000;
  }