@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

a {
  text-decoration: none;
}

a:visited {
}

#header {
  /* position: fixed; */
  position: relative;
  height: 50px;
  min-width: 100%;
  background-color: white;
}

#header #logo {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background-color: red; */
  background-image: url("../logos/PNGs/Level_Blue_Logo_500x149.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(0.6);
}

#searchCont {
  position: absolute;
  height: 40px;
  top: 5px;
  left: 15px;
  background-color: #070635;
  border-radius: 15px;
  padding: 10px;
}

#searchIcon {
  display: inline-block;
  height: 100%;
  width: 20px;
  background-image: url("https://www.shareicon.net/data/256x256/2016/01/05/698512_browser_512x512.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: invert(100%);
}

#searchBox {
  line-height: 20px;
  top: -2px;
  left: 10px;
  margin-right: 20px;
  border: none;
  background-color: transparent;
  color: white;
  font-size: 18px;
  width: 200px;
}

#tabBar {
  position: absolute;
  height: 50px;
  right: 15px;
}

#tabBar a {
  display: inline-block;
  line-height: 50px;
  min-height: 50px !important;
  padding: 0 20px;
  transition: background-color 0.3s ease;
  color: #070635;
  margin-right: -4px;
  cursor: pointer;
}

#tabBar a:hover {
  background-color: #ddd;
}

#tabBar a:visited {
  color: #070635 !important;
}
