
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background-color: #000;
  overflow: hidden;
}

.universo {
  height: 95%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 100vw;
}

.sol {
  position: absolute;
  height: 20%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-image: url(../imagens/sol.png);
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 45px rgb(250, 100, 45);
}

.orbitaTerra {
  display: flex;
  justify-content: center;
  height: 80%;
  aspect-ratio: 1/1;
  animation: terra 36.6s infinite linear;
}

.espaco {
  height: 30%;
  margin-top: -10%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terra {
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transform: rotate(-90deg);
  background-image: url(../imagens/terra.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
}

.orbitaLua {
    height: 100%;
    aspect-ratio: 1/1;
    background-image: url(../imagens/lua.png);
    background-repeat: no-repeat;
    background-size: 25%;
    animation: lua 2.7321588s infinite linear;
  }

::-webkit-scrollbar {
  display: none;
}

@keyframes terra {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes lua {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}