@import url("https://fonts.googleapis.com/css2?family=Orbitron&display=swap");

body {
  background-image: url("/3327272.jpg"); /* Star Wars Hintergrund */
  background-size: cover;
  background-position: center;
  font-family: "Orbitron", sans-serif;
  color: #ffd700; /* Goldgelbe Star Wars-Schriftfarbe */
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

#BmiRechner {
  font-size: 2.5rem;
  text-transform: uppercase;
  text-shadow: 3px 3px 10px rgba(255, 255, 255, 0.8);
  margin-top: 50px;
}

#container {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  width: 300px;
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.8);
}

label {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  margin-bottom: 15px;
  border: 1px solid #ffd700;
  background: rgba(0, 0, 0, 0.5);
  color: #ffd700;
  border-radius: 5px;
  text-align: center;
}

button {
  width: 100%;
  padding: 10px;
  font-size: 1.2rem;
  text-transform: uppercase;
  background: #ffd700;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0px 0px 10px rgba(255, 215, 0, 0.8);
}

button:hover {
  background: black;
  color: #ffd700;
  box-shadow: 0px 0px 20px rgba(255, 215, 0, 1);
}

#output-BMI {
  font-size: 1.5rem;
  margin-top: 10px;
  text-shadow: 0px 0px 10px rgba(255, 215, 0, 0.8);
}
