body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}
#kasten
 {
  
   flex: 1; /* Jede Box nimmt gleichen Platz ein */
 background-color:hsl(201, 90%, 48%);
  padding: 20px; /* Innenabstand der Boxen */
  text-align: center; /* Text zentriert */
  color: white; /* Textfarbe */
  box-sizing: border-box; 
} 

#resultArea {

  flex: 1; /* Jede Box nimmt gleichen Platz ein */
  background-color: hsl(0, 100%, 47%); /* Hintergrundfarbe der Boxen */
  padding: 20px; /* Innenabstand der Boxen */
  text-align: center; /* Text zentriert */
  color: white; /* Textfarbe */
   box-sizing: border-box;
}


 #mainArea {

  height: 10vh; 
  display: flex;
  flex-direction: row-; /* Boxen von rechts nach links */
  justify-content: space-between; /* Gleichmäßige Verteilung */
  align-items: center;  /* Vertikale Zentrierung, falls gewünscht */
  gap: 20px; /* Abstand zwischen den Boxen */
  padding: 10px; /* Innenabstand der Hauptbox */
  background-color: #696868; /* Hintergrundfarbe der Hauptbox */
  min-height: 200px; /* Minimale Höhe der Hauptbox */
   font-size: 64px;
 box-sizing: border-box;

}
#luftfeuchteArea {
     height: 20vh;
   flex: 1; /* Jede Box nimmt gleichen Platz ein */
  background-color:hsl(201, 90%, 48%);
  padding: 20px; /* Innenabstand der Boxen */
  text-align: center; /* Text zentriert */
  color: white; /* Textfarbe */
   border-radius: 14px;
  box-sizing: border-box; 
} 

#lufttemperaturArea {
     height: 20vh;
   flex: 1; /* Jede Box nimmt gleichen Platz ein */
 background-color:hsl(201, 90%, 48%);
  padding: 20px; /* Innenabstand der Boxen */
  text-align: center; /* Text zentriert */
  color: white; /* Textfarbe */
   border-radius: 14px;
  box-sizing: border-box; 
} 

#taupunkttemperaturArea {
     height: 20vh;
  flex: 1; /* Jede Box nimmt gleichen Platz ein */
 background-color: hsl(201, 90%, 48%);
  padding: 20px; /* Innenabstand der Boxen */
  text-align: center; /* Text zentriert */
  color: white; /* Textfarbe */
  border-radius: 14px;
  box-sizing: border-box;
}
#absolutfeuchteArea {
     height: 20vh;
   flex: 1; /* Jede Box nimmt gleichen Platz ein */
background-color: hsl(201, 90%, 48%);
  padding: 20px; /* Innenabstand der Boxen */
  text-align: center; /* Text zentriert */
  color: white; /* Textfarbe */
   border-radius: 14px;
  box-sizing: border-box; 
} 

      .menu-link:hover {
       text-decoration: underline;
       margin: 6px;
       }
      
      .button{
      background-color: blue;
      padding: 8px;
      border-radius: 8px;
      
      }
      .buttonb{
      background-color: rgb(2, 2, 151);
      padding: 8px;
      border-radius: 8px;
      }
    


table {
    width: 100%;
    height: 60vh;
    color: white;
    background-color: rgb(25, 25, 25);
}

td {
    width: 25%;
    text-align: center;
    background-color: #141414;
    font-size: 24px;
}

td:hover {
    background-color: rgb(63, 62, 62);
    cursor: pointer;
 }

 #gutes {
    background-color: hsl(0, 93%, 49%);
    cursor: pointer;
}
 #gutes:hover {
    background-color: hsl(201, 90%, 48%);
    cursor: pointer;
}
 #gutesa {
    background-color: hsl(0, 93%, 49%);
 
}


#result {
    background-color: rgb(67, 55, 236);
}

#result:hover {
    background-color: rgb(110, 101, 235);
}

.highlight {
    background-color: rgba(25, 25, 25);
}