@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;900&display=swap");
body {
  margin: 0 !important;
  background-color: black;
}

.planets-main {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sun {
  position: absolute;
  height: 75vw;
  width: 75vw;
  background-color: red;
  border-radius: 50%;
  left: 0;
  display: flex;
  background: linear-gradient(270deg, #ff0202, #ffa702);
  background-size: 300% 300%;
  -webkit-animation: SunAnimation 30s ease infinite;
  animation: SunAnimation 30s ease infinite;
}
.sun__circle {
  display: block;
  height: 85%;
  width: 85%;
  margin: auto;
  border-radius: 50%;
  border: 24px solid black;
}

.planets-container {
  box-sizing: border-box;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: auto;
  top: 64px;
  right: 0;
  width: 60%;
  align-self: flex-end;
}
.planets-container picture {
  position: relative;
}
.planets-container picture img {
  height: auto;
  width: 100%;
  filter: grayscale(1);
}

.planets-text {
  color: white;
  position: relative;
}
.planets-text__item {
  display: none;
  text-align: center;
}
.planets-text__item dl {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
.planets-text__item dl dt {
  margin-right: 3px;
}
.planets-text__item h2 {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 64px;
  font-weight: 900;
}

.instruction-text {
  color: #333333;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: right;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #3f3f3f;
}

@-webkit-keyframes SunAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes SunAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media only screen and (min-width: 1200px) {
  .planets-text__item--jupiter {
    display: block;
  }
}
@media only screen and (min-width: 1120px) and (max-width: 1199px) {
  .planets-text__item--saturn {
    display: block;
  }
}
@media only screen and (max-width: 1119px) {
  .instruction-text {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1040px) and (max-width: 1119px) {
  .planets-text__item--uranus {
    display: block;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1039px) {
  .planets-text__item--neptune {
    display: block;
  }
}
@media only screen and (min-width: 880px) and (max-width: 959px) {
  .planets-text__item--earth {
    display: block;
  }
}
@media only screen and (min-width: 800px) and (max-width: 879px) {
  .planets-text__item--venus {
    display: block;
  }
}
@media only screen and (min-width: 720px) and (max-width: 799px) {
  .planets-text__item--mars {
    display: block;
  }
}
@media only screen and (min-width: 1px) and (max-width: 719px) {
  .planets-text__item--mercury {
    display: block;
  }
}