body {
  background-image: url("backgrnd.jpg");
  background-repeat: repeat;
  font-family: "Palatino", serif;
  width: 100%;
  height: 100%;
}

h1 {
  color: navy;
  text-align: center;
  background-color: DarkSalmon;
}

.glass {
    padding: 20px;
    display: block;
    margin: 0 auto;
    height: 25vh;
}

footer {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  text-align: center;
  padding: 3px;
  background-color: DarkSalmon;
  color: white;
}

.mission {
    color: white;
    display: none;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.container {
  display: inline-block;
  cursor: pointer;
}
  
.loginform {
    display: none;
}

.formstyle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #333;

}

.bplabel {
    text-align: left;
    font-size: 17px;
    color: white;
}

input[type=button] {
    width: 100%;
    height: 50px;
    background: LightGreen;
    font-size: 17px;
}

input[type=text] {
    width: 100%;
    height: 50px;
    font-size: 40px;
}

input[type=label] {
    width: 100%;
    height: 50px;
    font-size: 40px;
    background-color: #333;
}

input.pw {
    -webkit-text-security: circle;
}

/* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  background-color: #04AA6D;
  color: white;
}



