/* Style the navigation menu */
.topnav {
  font-family:verdana;
  background-color: #333;
  position: relative;
  width: 100%;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
  position: absolute;
  top: 114;
  left: 0;
  right: 0;
  background-color: oldlace;
  border:3px solid black;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  width:100;
  padding: 0 0 20 0;
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 0;
  text-decoration: none;
  
  display: block;
  font-size: 50pt;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: black;
  display: flex;
  justify-content: center;
  position: absolute;
  width: 106;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav #myLinks a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  background-color: #04AA6D;
  color: white; 
  border:3px solid black;
  height:83px !important;
}

p {
  font-family: verdana;
  font-size: 20px;
  padding: 5; 
  margin: 0;
} 
.ListRowElem:hover{
    background-color: aquamarine;
    
}

.EingabeWrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.EingabeMaske{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border:2px solid black;
  opacity: 1;
  z-index:100;

} 
.EingabeMaskeDisplay{
 display:none;
}