html, body {
  background: white;
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

#page {
  opacity: 0;
  transition: opacity 2s ease, transform 2s ease;
}

#page.loaded {
  padding: 0;
  opacity: 1;
  transform: translateY(0);
}

div {
  padding: 0 5vw;
  margin: 0px;
  font-family: Arial;
  color: black;
  line-height: 1.5;
}

a {
  font-family: Arial;
  color: black;
  text-decoration: none;
  font-size: 1.2rem;
}

h1 {
  margin: 0px;
  margin-bottom: 1vh;
  font-size: 2.2rem;
  font-weight: 100;
  font-family: "Poetsen One", Arial;
}

p, a, button, div {
  margin: 0px;
  font-family: Arial;
  color: black;
  font-size: 1.3rem;
  font-family: "Zalando Sans SemiExpanded", Arial;
  font-weight: 400;
  font-style: italic;
}

.container {
  max-width: 1600px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin: 0 auto;
}