@font-face {
  font-family: "Iosevka";
  src: url(fonts/iosevka-regular.ttf.html) format("truetype");
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: white;
  overflow-y: auto;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  font-family: "Iosevka";
  font-size: 16px;
  background-color: white;
  transform: translateY(-40px);
  line-height: 20px;
}

div {
  margin-bottom: 16px;
}

a {
  color: inherit; /* Default link color */
  text-decoration: none; /* Remove underline by default */
}

a:hover {
  text-decoration: underline;
}

/* Zoomed-in mobile version */
@media (max-width: 1000px) {
  body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Iosevka";
    font-size: 32px;
    background-color: white;
    transform: translateY(-40px);
    line-height: 40px;
  }

  div {
    margin-bottom: 32px;
  }
}
