body {
  background-color: #E5E5E5;
}
#headLogo {
  max-width: 90%;
}
#globe {
  border-radius: 15px;
  float: left;
  margin: 0 30px 0 0;
  max-width: 100%;
}
footer {
  max-width: 946px;
  margin: auto;
  color: #888;
}

.container {
  max-width: 946px;
  margin: auto;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}
.container ul, .container p {
  overflow: hidden;
}
.topnav {
  display: flex;
  justify-content: space-between;
  background-color: #4b6c9e;
  color: white;
  border-radius: 15px;
}
.topnav .links {
  overflow: hidden;
  justify-self: left;
  display: flex;
}
.topnav a {
  /* display: block; */
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.topnav a:hover {
  background-color: #32496b;
  color: white;
  border-radius: 15px;
}
.topnav a.active {
  background-color: #4caf50;
  color: white;
}
.topnav .icon {
  display: none;
}
.main::after {
  float: clear;
}
.bottomnav a:link {
  color: #888;
}
.bottomnav a:visited {
  color: #555;
}
.bottomnav a:hover {
  color: #88c;
}
.warning {
  color: red;
}

.terms {
  padding: 0 20px;
}

.underline {
  text-decoration: underline;
}

.contact {
  text-align: center;
  color: #888;
}

/* Fall back styles */
body.no-wc .has-wc {
  display: none;
}

body:not(.no-wc) .no-wc {
  display: none;
}

/* Media Queries */
@media screen and (max-width: 800px) {
  .topnav .links {
    flex-direction: column;
  }
  .topnav a:not(:first-child) {display: none;}
  
  .topnav a.icon {
    justify-self: right;
    align-self: flex-start;
    display: block;
  }
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    align-self: flex-end;
    
  }
  .topnav.responsive a {
    display: block;
    text-align: left;
  }
  #globe {
    float: none;
  }
}