* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #121212;
  color: #cccccc;
  font-family: 'Courier New', monospace;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
}

h1 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #ff8edb, #5fff9e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

main {
  max-width: 90vw;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.logo {
  width: 60vw;
  max-width: 500px;
  height: auto;
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeInScale 1.2s ease-out forwards;
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
}
}
