body {
  justify-content: center;
  overflow: hidden;
}

.title {
  font-family: 'Instrument Serif', serif;
  font-size: 96pt;
  color: #ffffff;
  line-height: 1;
  user-select: none;
}

.nav {
  position: absolute;
  top: 48px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  font-size: 11pt;
  font-weight: 500;
  color: #ffffff;
  transition: opacity 0.2s ease;
  letter-spacing: 0.02em;
}

.nav a:hover {
  opacity: 0.6;
}

.socials {
  position: absolute;
  bottom: 48px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.socials a svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
  transition: opacity 0.2s ease;
}

.socials a:hover svg {
  opacity: 0.6;
}

@media (max-width: 480px) {
  .title {
    font-size: 48pt;
  }

  .nav {
    top: 32px;
  }

  .nav a {
    font-size: 10pt;
  }

  .socials {
    bottom: 32px;
  }

  .socials a svg {
    width: 28px;
    height: 28px;
  }
}
