@font-face {
  font-family: "Neuebit";
  src: url("PPNeueBit-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
}

:root {
  --bg: #e4e4e4;
  --ink: #101010;
  --menu: #8d9095;
  --page-pad-x: clamp(1.2rem, 3.4vw, 2.8rem);
  --page-pad-y: clamp(1.1rem, 3vw, 2.2rem);
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Neuebit", monospace;
}

.frontpage {
  min-height: 100vh;
  padding: var(--page-pad-y) var(--page-pad-x);
  box-sizing: border-box;
}

.frontpageHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.siteName {
  font-size: clamp(3.4rem, 9vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.personName {
  font-size: clamp(1.9rem, 4.1vw, 3.2rem);
  line-height: 0.9;
  text-align: right;
  white-space: nowrap;
  padding-top: clamp(0.2rem, 1.3vw, 0.7rem);
}

.menuList {
  list-style: none;
  margin: clamp(0.5rem, 2.3vw, 1.4rem) 0 0;
  padding: 0;
  font-size: clamp(3.5rem, 8.1vw, 5.7rem);
  line-height: 0.9;
}

.menuList li {
  margin: 0;
}

.menuList a {
  color: var(--menu);
  text-decoration: none;
  display: inline-block;
}

.menuList a:hover,
.menuList a:focus-visible {
  color: #6f7378;
  outline: none;
}

@media (max-width: 900px) {
  .frontpageHeader {
    flex-wrap: wrap;
  }

  .personName {
    display: none;
  }

  .menuList {
    margin-top: 0.72em;
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .menuList li + li {
    margin-top: 0.36em;
  }

  .menuList a {
    line-height: 0.7;
  }
}
