@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap");
body {
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(235,245,214,1) 0%, rgba(214,255,197,1) 97%);
  margin: 0;
  font-family: 'Poppins';
}

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

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

.MainBar .logo span {
  color: darkorchid;
}

.MainBar nav {
  display: none;
}

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

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

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;
  }
}

.Buttons {
  padding-top: 3em;
  text-align: center;
  font-weight: bold;
}

.Buttons a {
  text-decoration: none;
  color: white;
  padding: 1em .5em;
  border-radius: 5em;
}

.DL {
  background: #bd2424;
}

.Center {
  text-align: center;
  font-weight: bold;
}
/*# sourceMappingURL=main.css.map */
