body {
  background-color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

#menubar {
  background-color: #fff;
  border-radius: 15px 15px 15px 15px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  margin: 5px;
}

#menubar header {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 5vmin;
  max-height: 40px;
  min-height: 20px;
  font-weight: bolder;
  padding: 10px;
}

#menubar header a{
  color: #111;
  font-size: 150%;
  text-decoration: none;
  font-style: oblique;
}

#menubar nav {
  height: 5vh;
  min-height: 50px;
}

#menubar nav ul{
  display: flex;
  list-style-type: none;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: auto;
  background-color: #333333;
  border-radius: 0 0 15px 15px;
}

#menubar nav li {
  display: flex;
  height: 100%;
  padding: 0;
  margin: 0;
}


#menubar nav li a{
  border-style: none;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: medium;
  height: 100%;
  text-decoration: none;
  transition: 0.3s;
  padding: 0 15px;
  margin: 0;
}

#menubar nav a:hover{
  background-color: #111;
}

#menubar nav a.active {
  background-color: #111;
}

#menubar::after {
  content: "";
  display: table;
  clear: both;
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    z-index: 9999;

    overflow: auto;

    background: rgba(0,0,0,.4);
}

/* Set a style for all buttons */
.modal-content button {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

/* Extra styles for the cancel button */
.modal-content .cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

.modal-content button:hover {
  opacity: 0.8;
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
     display: block;
     float: none;
  }
  .cancelbtn {
     width: 100%;
  }
}

/* Full-width input fields */
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.modal-content div{
  display: flex;
  width: 100%;
  padding-bottom: 20px;
}

.modal-content .container{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 20px;
}

.modal-content h2{
  text-align: center;
  height: auto;
  width: 100%;
  font-size: 150%;
  text-decoration: none;
  font-weight: bolder;
  padding-top: 20px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto; /* 15% from the top and centered */
  padding: 1vh 2vh;
  border: 1px solid #888;
  border-radius: 20px;
  width: 80%; /* Could be more or less, depending on screen size */
  height: fit-content;
}

/* The Close Button */
.close {
  justify-self: flex-end;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

/* Close button on hover */
.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)}
  to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}