/* style nur für index.html */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  background-color: #195e20;
  background-image:
    linear-gradient(#195e20 1px, transparent 1px),
    linear-gradient(90deg, #195e20 1px, transparent 1px);
  background-size: 20px 20px;
  font-family: 'Press Start 2P', monospace;
  color: #f8f8f2;
  text-shadow: 1px 1px #000;

  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  box-sizing: border-box;
  padding: 1rem;
  /* Abstand auf kleinen Screens */
}

/* SBW-Logo */
.sbw-logo {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 120px;
  max-width: 25vw;
  height: auto;
  z-index: 999;
}

/* Menü-Container */
.menu {
  width: 100%;
  max-width: 400px;
  height: auto;
  background-color: #0c3d13;
  padding: 30px 20px;
  border: 4px solid #66ff66;
  box-shadow: inset 0 0 0 4px #003300;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Text-Snake */
.logo {
  font-size: 2em;
  color: #66ff66;
  text-shadow: 2px 2px #003300;
  margin-bottom: 20px;
}

/* Untertitel */
.subtitle {
  font-size: 0.7em;
  color: #99ff99;
  margin-bottom: 30px;
  text-align: center;
}

/* Buttons */
.menu button {
  display: block;
  width: 100%;
  max-width: 280px;
  background-color: #000;
  color: #66ff66;
  font-family: 'Press Start 2P', monospace;
  border: 2px solid #66ff66;
  padding: 15px 10px;
  margin: 10px auto;
  font-size: 0.65em;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 0;
}

.menu button:hover {
  background-color: #003300;
}

/* === Responsive Anpassungen für kleinere Geräte === */
@media (max-width: 480px) {
  .logo {
    font-size: 1.5em;
  }

  .subtitle {
    font-size: 0.6em;
    margin-bottom: 20px;
  }

  .menu button {
    font-size: 0.6em;
    padding: 12px 8px;
  }
}