html, body {
  height: 100%;
  margin: 0;
  min-height: 100vh;
  min-width: 100vw;
  padding: 0;
  width: 100%;
}

main {
  background-color: black;
  height: 100%;
  position: relative;
  width: 100%;
}
main .main__container {
  background-color: black;
  border-radius: 50%;
  height: 100%;
  left: 50%;
  max-height: 300px;
  max-width: 300px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 25000;
}
main .main__container::before {
  animation: rotateBackground 60s linear infinite;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./circle.png);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
main .img-container {
  height: inherit;
  width: inherit;
}
main .img-container img {
  height: 60px;
  margin: 5%;
  margin-top: calc(50% - 30px);
  width: 90%;
}
main .free-space {
  position: relative;
}
main .free-space__container {
  height: 100%;
  width: 100%;
}
main .free-space__container :nth-child(1) {
  right: 40%;
  top: 15%;
  transform: translate(75%, -175%);
}
main .free-space__container :nth-child(2) {
  right: 66%;
  top: 20%;
  transform: translate(-25%, -175%);
}
main .free-space__container :nth-child(3) {
  right: 25%;
  top: 35%;
  transform: translate(125%, -50%);
}
main .free-space__container :nth-child(4) {
  right: 75%;
  top: 40%;
  transform: translate(-25%, -50%);
}
main .free-space__container :nth-child(5) {
  right: 25%;
  top: 55%;
  transform: translate(75%, 175%);
}
main .free-space__container :nth-child(6) {
  right: 76%;
  top: 55%;
  transform: translate(-25%, 175%);
}
main .free-space__container :nth-child(7) {
  right: 40%;
  top: 75%;
  transform: translate(75%, 175%);
}
main .free-space__container :nth-child(8) {
  right: 55%;
  top: 79%;
  transform: translate(-25%, 175%);
}
main .link__container {
  position: absolute;
}
main .link__container a {
  box-shadow: none;
  color: aliceblue;
  font-size: 22px;
  font-weight: bold;
  padding: 5px 15px;
  text-decoration: none;
  transition: box-shadow 0.5s ease 110ms;
}
main .link__container a:hover {
  box-shadow: 0 0 10px 5px #2272FF;
  transition: box-shadow 0.5s ease 1010ms;
}
main .link .link__container:hover {
  border: 2px solid #2272FF;
  border-radius: 8px;
  transition: border 0.3s ease;
}
main .line-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: 1000;
}

@keyframes rotateBackground {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateContent {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}/*# sourceMappingURL=style.css.map */