/* anuphan-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Anuphan';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/anuphan-v6-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/anuphan-v6-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* Grundlegendes CSS-Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
}

/* Main mittig im Viewport ausrichten */
body, main {
  font-family: 'Anuphan', sans-serif;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.2;
  color: #000;
  background-color: #FFF1BD;
  font-weight: 400;
}

main {
  width: 100vw;
  flex-direction: column;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

section {
  text-align: left;
  margin-top: -14vh;
}
h1 {
  font-size: 26px;
  line-height: 1.2;
  margin: 0px;
  padding: 0px;
  margin-bottom: 72px;
  font-weight: 400;
}
p {
  margin: 0px;
  padding: 0px;
}
p + p {
  margin-top: 19px;
}
p > a, a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #00000000;
  transition: border-bottom 0.5s ease;
}
p > a:hover, a:hover {
  border-bottom: 1px solid #000;
  transition: border-bottom 0.5s ease;
}
@media (max-width: 322px) {
  html, body, main {
    font-size: 4.97vw;        /* 16px / 322px * 100 */
    line-height: 1.2;
    height: 100vh;
    width: 100vw;
  }

  h1 {
    font-size: 8.07vw;        /* 26px / 322px * 100 */
    margin-bottom: 22.36vw;   /* 72px / 322px * 100 */
  }

  section {
    margin-top: -4.35vw;      /* -14px / 322px * 100 */
    text-align: left;
  }

  p {
    font-size: 4.97vw;        /* 16px / 322px * 100 */
  }

  p + p {
    margin-top: 5.90vw;       /* 19px / 322px * 100 */
  }

  a, p > a {
    font-size: 4.97vw;        /* 16px / 322px * 100 */
  }
}