body{
    background: rgb(27,124,40);
    background: linear-gradient(90deg, rgba(27,124,40,1) 9%, rgba(2,41,11,1) 36%, rgba(37,52,171,1) 63%, rgba(172,0,0,1) 90%); 
    
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    height: 100vh;
    margin: 0;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Optional: add a fixed height if needed, e.g., height: 60px; */
    pointer-events: none; /* Optional: if you want clicks to pass through areas not covered by children */
  }

.home-button {
  position: absolute;
  top: 10px;  /* Adjust as needed */
  left: 10px; /* Adjust as needed */
  height: 1.5em;
  width: 5em;
  font-size: 2em;
  background: rgb(49,176,7);
  background: linear-gradient(90deg, rgba(49,176,7,1) 0%, rgba(0,22,172,1) 100%);
  color: white;
  pointer-events: auto; /* Ensure the button remains clickable */
}

/* h1: center it horizontally at the top */
h1 {
  position: absolute;
  top: 10px; /* Adjust to control vertical placement */
  left: 50%;
  transform: translateX(-50%);
  margin: 0; /* Remove default margin */
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  font-size: 3em;
  color: white;
  pointer-events: auto; /* Allow text selection or interaction if needed */
}

button{
  border-radius: 0.5em;
}

.regular-label{
  font-size: 1.5em;
  color: white;
  display: inline; /* Sicherstellen, dass das Label inline bleibt */
}

.multi-purpose-button {
  background: blue;
  color: white;
  font-size: 1.5em;
  padding: 0.5em 1em;
  margin: 0.5em;
}


.nav-menu{
  align-self: center;
  display:flex;
  flex-wrap: wrap;
  width: 66%;
  height: 40%;

  justify-content: space-around;
  justify-self: center;

  row-gap: 1em;
  column-gap: 2em;

  margin-top: auto;
  margin-bottom: auto; /* This centers it vertically */
}

.nav-button{
  height: 2em;
  width: 8em;
  color: white;
  background-color: blue;
  border-color: black;
  font-size: 3em;
  border-radius: 30px;
}

.sidebar {
  display:flex;
  flex-direction: column;
  height: 80%;
  width: 180px; 
  position: fixed;
  z-index: 1;
  top: 100px;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px; 
}

.sidebar-button{
  background: blue;
  color: white;
  font-size: 1em;
  padding: 0.5em 0.8em;
  margin: 0.5em;
}

/* Experimentell. noch nicht ausürobiert*/
@media (max-width: 768px) {
  .sidebar {
    width: 150px; 
  }
}

@media (max-width: 480px) {
  .sidebar {
    width: 120px; 
  }
}

.matomo-iframe {
  background-color: rgb(69, 112, 112);
  height: 500px;
  width: 400px;
  position: absolute;
  top: 100px;
  left: 650px;
  z-index: 10;
}
.matomo-save-button {
  background: green;
  color: white;
  font-size: 1.5em;
  padding: 0.5em 1em;
  margin: 0.5em;
  position: absolute;
  left: 700px;
  top: 500px;
  z-index: 11;

}