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

html,
body {
  width: 100%;
  height: 100%;
  background-color: #000000;
  color: #ffffff;
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    sans-serif;
  overflow: hidden;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

.brand-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease;
}

.brand-link:hover {
  opacity: 0.7;
}
