@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
body {
  overflow: hidden;
  font-family: DM Sans, sans-serif;
  background-color: #EFE9DB;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.svg {
  z-index: 0;
  max-width: 200px;
  width: 100%;
  height: auto;
}

.discord-button {
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: transparent;
  color: #3B0805;
  text-decoration: none;
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.discord-button .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #3B0805;
  margin-right: 8px;
}

.image-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50vw;
  height: 50vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.image-1 {
  animation: spin-1 20s infinite linear;
  min-width: 600px;
  width: 130%;
  height: 130%;
}

.image-2 {
  animation: spin-2 30s infinite linear;
  min-width: 550px;
  width: 120%;
  height: 120%;
  position: absolute;
  top: calc(50% - height / 2);
  left: calc(50% - width / 2);
}

.image-3 {
  animation: spin-3 40s infinite linear;
  min-width: 500px;
  width: 110%;
  height: 110%;
  position: absolute;
  top: calc(50% - height / 2);
  left: calc(50% - width / 2);
}

@keyframes spin-1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-3 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=main.css.map */