@import url("https://fonts.googleapis.com/css2?family=Commissioner:wght@400;500;700;900&display=swap");
html, body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  background-color: #fafafa;
}

ol, li {
  list-style: none;
}

a {
  text-decoration: none;
}

main {
  display: block;
  width: 100%;
  z-index: 2;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  width: 100%;
  min-height: 40vh;
  background-image: url(../../assets/img/srg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

header h1 {
  color: black;
  font-family: 'Commissioner', sans-serif;
  font-weight: 700;
  text-align: center;
  width: 50%;
  font-size: 1.5rem;
  padding-left: .5em;
  margin: 0.7em;
}

header a {
  
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 50%;
  max-height: 30px;
  outline: none;
  padding: 1em;
  z-index: 4;
}

header a img {
  padding: 0.5em;
  width: 20px;
}

header ul {
  display: none;
  width: 90%;
  padding: 0;
  left: 50%;
  top: 15%;
  -webkit-transform: translate(-50%, -15%);
          transform: translate(-50%, -15%);
  background-color: blue;
  -webkit-box-shadow: 0 0 0.5em #201e1e;
          box-shadow: 0 0 0.5em #201e1e;
  border-radius: 10px;
  position: absolute;
  z-index: 4;
}

header ul li {
  width: 100%;
  border-bottom: 0.5px solid rgba(230, 222, 222, 0.815);
}

header ul li a {
  color: white;
  font-family: 'Commissioner', sans-serif;
  font-weight: 700;
  text-align: left;
  display: block;
  padding: 1.5em;
}

header ul li:last-child {
  border: none;
}
/*# sourceMappingURL=navbar.css.map */