*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #000;
  color: #fff;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}

#background {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

header {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 1;
}

#logo {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

#logo small {
    display: block;
    font-size: 0.3em;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
    margin-left: 0.2em;
}

main {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0 20px;
}

.contact {
  margin-top: 1rem;
}

.contact a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.contact a:hover {
  color: #fff;
}
