/* Buttons */
button {
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  background: black;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

/* Hover Effekt */
button:hover {
  background: #333;
  transform: scale(1.05);
}

/* Icon Größe */
button i {
  font-size: 20px;
  margin-right: 8px;
}

/* Body Hintergrund */
body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(to bottom, #66ccff 0%, #3399ff 70%, #0066cc 100%);
  overflow-x: hidden;
  overflow-y: auto;
  text-align: center;
  font-family: Arial, sans-serif;
}
.main-content {
  margin-top: 120px; /* Höhe der Navbar plus extra Abstand */
}
/* Überschriften */
h1 {
  color: lightgreen;
}

/* Navbar (falls du sie später nutzt) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #3e8e41;
  text-align: center;
  padding: 10px 0;
  z-index: 1000;
}
