body {
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  color: #fff;
  background: black;
  overflow: hidden;
  text-align: center;
}

.stars {
  width: 100%;
  height: 100%;
  position: fixed;
  background: url("https://www.transparenttextures.com/patterns/stardust.png") repeat;
  animation: moveStars 60s linear infinite;
  z-index: -1;
}

@keyframes moveStars {
  from { background-position: 0 0; }
  to { background-position: -10000px 5000px; }
}

.logo {
  height: 400px;
  align-items: center;
}

.container {
  padding: 50px;
}

header p {
  margin: 10px 0;
  font-size: 14px;
  color: #ccc;
}

.buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

button {
  background: rgb(0, 0, 0);
  width: 255px;
  border: 2px solid #8a0000;
  color: #ffc400;
  padding: 15px 30px;
  font-size: 16px;
  font-family: 'Press Start 2P', cursive;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

button:hover {
  background: #ffc400;
  color: black;
  box-shadow: 0 0 20px #8a0000, 0 0 40px #8a0000;
}