@font-face {
  font-family: "Canterbury";
  src: url("Canterbury.ttf");
}

/* ===== LANDING PAGE ===== */

.landing-page {
  margin: 0;
  background: black;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
}

.center-image {
  max-width: 80vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  cursor: pointer;
}

/* ===== FOLTERAAR PAGE ===== */

.folteraar-page {
  margin: 0;
  background: black;
  color: white;
  font-family: "Canterbury", serif;
  height: 100vh;
  overflow: hidden;
}

.content {
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.text-block {
  z-index: 2;
}

/* Make ALL text the same size */

h1,
p {
  font-size: 1.5rem;
  font-weight: normal;
  margin: 1rem 0;
  letter-spacing: 1px;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

/* Footer image */

.footer-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  max-width: 100%;
  height: auto;
}

/* Top logo */

.top-logo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);

  width: 500px;      /* scale down here */
  max-width: 80vw;

  height: auto;
}