@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap");
body {
  background: white;
  margin: 0;
  font-family: 'Poppins';
}

.MainBar {
  background: darkgrey;
  padding: 1em;
}

.MainBar .logo {
  text-decoration: none;
  font-weight: bold;
  color: black;
  font-size: 1em;
  padding-left: 3.4em;
}

.MainBar .icon {
  position: fixed;
  top: 10px;
  left: 10px;
}

.MainBar nav {
  display: none;
}

.MainBar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: space-between;
}

.MainBar .mobile-menu {
  cursor: pointer;
}

.Center {
  text-align: center;
}

nav.mobile-menu {
  display: block;
}

nav {
  position: fixed;
  z-index: 999;
  width: 66%;
  right: 0;
  top: 0;
  background: #444444;
  height: 100vh;
  padding: 1em;
}

nav .mobile-menu-exit {
  display: block;
  float: right;
  width: 1em;
  height: 1em;
  cursor: pointer;
}

nav ul.PrimaryBar {
  margin-top: 5em;
  list-style: none;
}

nav li a {
  color: white;
  text-decoration: none;
  display: block;
  text-align: right;
}

@media only screen and (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
  .mobile-menu-exit {
    display: none;
    opacity: 0%;
    cursor: not-allowed;
  }
  .MainBar .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 180px auto;
        grid-template-columns: 180px auto;
  }
  .MainBar nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: none;
    position: unset;
    height: auto;
    width: 100%;
    padding: 0;
  }
  .MainBar nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .MainBar nav a {
    color: black;
    font-size: 1em;
    padding: .1em 1em;
  }
  .MainBar nav ul.PrimaryBar {
    margin: 0;
    list-style: none;
  }
  .MainBar nav li.Home {
    font-weight: bold;
  }
}
/*# sourceMappingURL=main.css.map */