@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.logo {
  width: 200px;
  height: auto;
  position: absolute;
  left: -1.2rem;
  top: -4rem;
}
@media (max-width: 850px) {
  .logo {
    position: relative;
    top: 10px;
  }
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #f0f0f0;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* Nest all these elements later */
.nav-bar {
  background-color: #0f0f23;
  color: #f0f0f0;
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}
@media (max-width: 850px) {
  .nav-bar {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(15em, 100%);
    z-index: 10;
    border: none;
    border-left: 1px solid #f0f0f0;
    transition: right 300ms ease-out;
  }
}

.nav-bar__ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 1.5rem;
}
@media (max-width: 850px) {
  .nav-bar__ul {
    width: 100%;
    flex-direction: column;
  }
}

.nav-bar__anchor {
  text-decoration: none;
  color: inherit;
  padding: 1.5rem 2.5rem;
  transition: background-color 150ms ease;
}
.nav-bar__anchor:hover {
  background-color: rgba(240, 240, 240, 0.4117647059);
}

.open-sidebar {
  display: none;
  background: none;
  border: none;
  padding: 1em;
  margin-left: auto;
  cursor: pointer;
}
@media (max-width: 850px) {
  .open-sidebar {
    display: block;
  }
}

.nav-bar--close {
  display: none;
  background: none;
  border: none;
  padding: 1em;
  cursor: pointer;
  margin-left: 0.5rem;
}
@media (max-width: 850px) {
  .nav-bar--close {
    display: block;
  }
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: hsla(0, 0%, 17%, 0.547);
  z-index: 2;
  display: none;
}

.display-overlay {
  display: block;
}

.web-footer {
  background-color: #0f0f23;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
}
@media (max-width: 400px) {
  .web-footer {
    padding: 1rem;
  }
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
}
@media (max-width: 400px) {
  .footer-container {
    flex-direction: column;
  }
}

.footer-item {
  cursor: pointer;
}
.footer-item a {
  color: #f0f0f0;
  text-decoration: none;
}

/* mobile nav */
@media screen and (max-width: 850px) {
  .show {
    right: 0;
  }
  .nav-bar__item {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
}

/*# sourceMappingURL=shared.css.map */
