:root{
    --backround-color: #5e8662;
    --darker-backround-color: #243848;
    --accent-color: #adce5f ;
    --text-color: #f1ede4;
    --navbar-height: 115px;
  }
  
  
  /*nav bar mit unterpunkt und responsiv für andere geräte*/
  
  *{
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
  }
  
  html{
    height: 100%;
  }
  
  body{
    height: 100%;
  }


.header {
  background-color: #adce5f;
  height: 300px;
  width: auto;
  display: flex;
}


.wartung-container {
  background-color: #5e8662;
  height: 100%;
  width: auto;
  align-items: center;
  padding-top: 50px;
}

.wartung-container h1{
  font-size: 60px;
  padding-bottom: 50px;
}


.wartung-container p{
  padding-bottom: 30px;
  text-decoration: underline;
}




