html,
body {
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
        Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    --midnight-purple: #0D0014;
    --dream-blue: #124280;
    /* background-color: var(--midnight-purple); */
    background: radial-gradient(81.51% 107.38% at 10.96% -12.24%, #4B3458 0%, #124280 34.38%, #2B1159 66.15%, #1B0128 100%);
}

#loading {
    color: white;

}
.center {
    text-align: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

* {
    box-sizing: border-box;
}

#globe {
    font-size: 48px;
    animation: rotation 1s infinite linear;
}
@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }