body {
  margin: 0;
  padding: 0;
}

.logo {
  width: 330px;
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 10px;
  overflow-x: hidden;
}

/* Add a black background color to the top navigation */
.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
/* background-color: #333; */
  background-color: #e5e5e5;

}

/* Style the links inside the navigation bar */
.topnav a {
  font-weight: bold;
  float: right;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 90%;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: right;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
  font-weight: bold;
  font-size: 90%;
  border: none;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  
}


/* Style the links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}

#page-container {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 2.5rem;    /* Footer height */
}

#footer {
  font-size:70%;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;            /* Footer height */
}

/* The sidebar menu */
.sidenav {
  width: auto;
  top: 150px;
  right: 50px;
  font-size: 80%;
  color: black;
  padding: 20px;
  text-align: right;
/* background-color: #eee */
}

.sidenav a:link {color:blue;}
.sidenav a:visited {color:blue;}
.sidenav a:hover {color: red;}


@media screen and (max-width: 1000px) {
  .sidenav {
	  padding-top: 15px;
	  top: 80%;
	  position: dynamic;
	  text-align: center;
	  }
  .sidenav a {font-size: 18px;}
  
}

* {
  font-family: Montserrat, sans-serif;
}

/*Searchbar*/
#search {

}

#search input[type="text"] {
    border: 1px solid #d1d1d1;
    color: #bebebe;
    width: 270px;
    padding: 6px 15px 6px 35px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 20px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
    }

#search input[type="text"]:focus {
    width: 270px;
    }


/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 1000px) {
  .logo {
	text-align: center;
	top: 0px;
	left: 30%;
}
  .topnav {
	  font-size: 350%;
	  background-color: white;
	  padding-top: 5%;

  }
  .topnav a.right,
  .topnav a {float: none;}
  .topnav button {
	  display: none;
	  }
 }

