body {
  font-family: "Inter", Helvetica, Arial, sans-serif;
}
.error404 {
  background: #F9F9F9;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.error404 .planets {
  text-align: center;
  justify-content: center;
}
.error404 .planets span {
  font-size: 200px;
  padding-top: 120px;
  display: block;
  font-weight: 100;
  color: #3C3C3B;
  line-height: 140px;
}
.error404 .planets h1 {
  font-size: 28px;
  color: #000;
  font-weight: 400;
}
.error404 .planets p {
  font-size: 18px;
  color: #000;
  line-height: 40px;
}
.error404 .planets img {
  position: relative;
  width: 100%;
}
@media (max-width: 1400px) {
  .error404 .planets {
    text-align: center;
  }
  .error404 .planets span {
    padding-top: 30px;
    line-height: 170px;
  }
  .error404 .planets img {
    width: 60%;
  }
}
@media (max-width: 600px) {
  .error404 .planets h1 {
    font-size: 24px;
  }
  .error404 .planets p {
    font-size: 16px;
  }
  .error404 .planets span {
    padding-top: 15px;
    font-size: 130px;
  }
  .error404 .planets img {
    margin: 10px 0;
  }
}
@media (max-width: 450px) {
  .error404 .planets h1 {
    font-size: 18px;
  }
  .error404 .planets p {
    font-size: 14px;
  }
  .error404 .planets img {
    width: 80%;
    margin: 10px 0;
  }
}
