@charset "UTF-8";
body {
  color: white;
  overflow: hidden;
  margin: 0;
}
.planets {
  width: 100dvw;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.planets--logo {
  width: 60%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.5em;
  padding-left: 1.5em;
}
@media (max-width: 768px) {
  .planets--logo {
    width: 95%;
    padding-left: 0;
    padding: 1em;
  }
}
.planets--computer, .planets--mobile {
  width: 100dvw;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-position: center center;
  background-repeat: cover;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .planets--computer {
    display: none;
  }
}
@media (min-width: 768px) {
  .planets--mobile {
    display: none;
  }
}
.planets--social__nets {
  width: 60%;
  position: absolute;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5em;
  padding-bottom: 1.5em;
}
.planets--social_net {
  height: 50px;
  transition: all 0.5s ease;
  filter: grayscale(65%) brightness(50%);
}
@media (max-width: 768px) {
  .planets--social_net {
    height: 30px;
  }
}
@media (max-height: 550px) {
  .planets--social_net {
    height: 30px;
  }
}
@media (min-width: 768px) {
  .planets--social_net:hover {
    transform: scale(1.15);
  }
}
.planets--ul__list {
  width: 100%;
  marker: none;
  display: flex;
  justify-content: center;
  gap: 2.5em;
  padding: 0;
  margin: 0;
}
.planets--img {
  width: 100%;
  height: 150px;
  border: 0.2px dashed white;
  background-color: black;
}
.planets--li {
  width: 20%;
  max-width: 200px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .planets--li:hover {
    transform: scale(1.15);
  }
}
.planets--links {
  width: 100%;
  display: flex;
  justify-content: center;
}
.planets--link {
  width: 100%;
  text-decoration: none;
  border: 0.3px dashed whitesmoke;
  background-color: black;
}
.planets--text {
  width: 100%;
  height: 90px;
  border: 0.2px dashed whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0.5em;
  background-color: black;
  color: white;
  text-decoration: none;
  font-size: min(max(1.85vw, 14px), 22px);
  font-family: "Courier New", Courier, monospace;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .planets--text {
    height: 30px;
    border: 1px dashed whitesmoke;
  }
}
/*# sourceMappingURL=index.css.map */
