html {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Press Start 2P', cursive;
  background-color: #000000;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  width: 80vw;
  margin: auto;
  text-align: center;
  flex-direction: column;
}

.title {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 30px;
}

.message {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 30px;
}

.quote {
  font-style: italic;
  color: #ffffff;
  margin-bottom: 30px;
}

.start-button {
  border: 2px solid white;
  background-color: transparent;
  color: #ffffff;
  font-family: 'Press Start 2P', cursive;
  font-size: 24px;
  border-radius: 8px;
  padding: 10px 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container {
    width: 90vw;
  }
}

@media (max-width: 576px) {
  .title {
    font-size: 36px;
  }

  .message {
    font-size: 24px;
  }

  .quote {
    font-size: 18px;
  }

  .start-button {
    font-size: 18px;
  }
}