html {
  margin: 0;
  font-family: monospace;
  color: #4e4e4e;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


h1 {
  font-family: monospace;
  font-size: 2.5rem;
  letter-spacing: 0.25em;
  white-space: pre;
  color: #6366f1;
  font-weight: bold;
}

a {
  color: #6366f1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  margin: 0;
}

.headline-container {
  /* Use the full viewport height and width */
  margin: 0;
  height: 100vh;
  width: 100%;
  font-size: calc(2vw + 8px);
  /* Flexbox for centering */
  display: flex;
  justify-content: center;
  align-items: center;
}

section {
  width: 100%;
}

.centered-block {
  padding: 1em;
}

.contact {
  font-size: max(0.5em, 12px);
}
/* Header */
.header {
  border-bottom: 1px solid #99a1af;
  width: 100%;
  position: relative;
  z-index: 1;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
  padding: 0 32px;
  max-width: 1152px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

.logo {
  height: auto;
  max-height: 36px;
  display: block;
}

a:has(.logo) {
  display: inline-block;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #4a5565;
  text-decoration: none;
}