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

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

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

.brand-link {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  user-select: none;
}

.brand-link:hover {
  opacity: 0.8;
  transform: scale(1.02);
}
