:root {
  --adaptive-font-size: 10vh;
}

@media (max-aspect-ratio: 1/1) {
  :root {
    --adaptive-font-size: 10vw;
  }
}
@font-face {
  font-family: "SpecialElite";
  src: url(SpecialElite-Regular.ttf) format("truetype");
}
#domain {
  margin-bottom: -3%;
}

.mail {
  margin: 0;
  font-size: 0.3em;
}

div {
  font-size: calc(var(--adaptive-font-size));
  position: relative;
  font-family: "SpecialElite";
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: -7%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.dark-mode {
  background-color: black;
}
.dark-mode div {
  color: white;
}
.dark-mode button {
  background-color: transparent;
  background-image: url(sun.svg);
  filter: invert(1);
}

button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background-image: url(moon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border: 2px solid #333;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 9999;
}/*# sourceMappingURL=style.css.map */