/* Header styles */
header {
  display: flex;
  background-color: white;
  align-items: center;
  z-index: 1000;
  width: 100%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), -2px -2px 4px rgba(0, 0, 0, 0.3); 
}

.logo_header {
  float: left;
  margin-right: 10%;
  margin-left: 10%;
  border-radius: 5px;
  padding: 8px;
}
.logo_img{
  width:170px
}

.nav-bar {
  float: right;
  background-color: #002347;
  padding: 10px;
  border-radius: 5px;
  font-family: "Geologica", sans-serif;
  font-weight: bold;
  font-size: small;
}

.nav-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-bar li {
  display: inline-block;

}

.nav-bar a {
  color: white;
  text-decoration: none;
}

.nav-bar a:hover {
  color: #ff5003;
}

.dropdown{
  display: none;
}
@media only screen and (min-width: 1061px){
  .nav-bar li {
    margin-right: 25px;
    margin-left: 25px;
}
.nav-bar{
  font-size: small;
}
}
@media only screen and (min-width: 1270px){
  .nav-bar li {
    margin-right: 40px;
    margin-left: 40px;
}
}
@media only screen and (min-width: 896px)and (max-width:1060px){
  .nav-bar li {
    margin-right: 20px;
    margin-left: 20px;
}
.nav-bar{
  font-size: x-small;
}
}

@media only screen and (max-width: 896px){
  header {
    position: fixed;
    top: 10px;
    align-items: center;
    height: 9%;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), -2px -2px 4px rgba(0, 0, 0, 0.3); 
  }
  
.nav-bar{
  display: none;
}

body {
  margin: 0;
  padding: 0;
}

.menu_button{
width: 30px;
  height: 30px;
}
.logo_img{
  width:130px
}
.dropdown {
  display: inline;
  position: absolute; 
  font-family: "Geologica", sans-serif;
  right: 1px;
}

.dropbtn {
  background-color: #ffffff;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  cursor: pointer;
 
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  font-family: verdana;
  text-decoration: none;
  display: block;
  font-family: "Geologica", sans-serif;
  color: #002347;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #ffffff;
}
}
