/* ===== Bas ===== */
body {
  margin: 0;
  padding: 0;
  background: url('../img/background.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Orbitron', sans-serif; /* mer modern retro än Press Start 2P */
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  padding: 20px;
}

/* ===== Container med maxbredd ===== */
.container {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 0 25px rgba(0, 255, 170, 0.4);
}

/* ===== Logo ===== */
.logo {
  width: 220px;
  max-width: 80%;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(0, 255, 170, 0.7));
}

/* ===== Intro-text ===== */
p, .intro {
  font-size: 15px;
  line-height: 1.6;
  color: #eee;
  text-shadow: 0 0 6px rgba(0, 255, 170, 0.6);
}

/* ===== Knapp ===== */
button {
  font-family: inherit;
  font-size: 14px;
  padding: 12px 24px;
  background-color: #111;
  color: #0f0;
  border: 2px solid #0f0;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.2s ease-in-out;
  text-shadow: 0 0 5px #0f0;
}

button:hover {
  background-color: #0f0;
  color: #111;
  box-shadow: 0 0 12px #0f0;
}

/* ===== Footer ===== */
footer {
  margin-top: 30px;
  font-size: 12px;
  color: #aaa;
  text-shadow: 0 0 5px rgba(0, 255, 170, 0.5);
}
