@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@800&family=Poppins:wght@700&family=Roboto:wght@400;700&display=swap");
:root {
  --primary-color: #8ac926;
}

body {
  background: #F2F2F2;
  margin: 0;
  font-family: "Poppins";
}

.navbar {
  background-color: white;
  padding: 1em;
}
.navbar .logo {
  text-decoration: none;
  font-weight: bold;
  color: black;
  font-size: 1.2em;
}
.navbar span {
  color: var(--primary-color);
}
.navbar nav {
  display: none;
}
.navbar .container {
  display: flex;
  place-content: space-between;
}
.navbar .mobile-menu {
  cursor: pointer;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav.menu-btn {
  display: block;
}

nav {
  position: fixed;
  z-index: 999;
  width: 66%;
  right: 0;
  top: 0;
  background: var(--primary-color);
  height: 100vh;
  padding: 1em;
}
nav ul.primary-nav {
  margin-top: 6em;
}
nav li a {
  color: white;
  display: block;
  padding: 0.5em;
  font-size: 1.2em;
  text-align: right;
  text-decoration: none;
}
nav li a:hover {
  font-weight: bold;
}
nav .mobile-menu-exit {
  float: right;
}

@media only screen and (min-width: 768px) {
  .mobile-menu, .mobile-menu-exit {
    display: none;
  }
  .navbar .container {
    display: grid;
    grid-template-columns: 180px auto;
    justify-content: unset;
  }
  .navbar nav {
    display: flex;
    justify-content: space-between;
    background: none;
    position: unset;
    height: auto;
    width: 100%;
    padding: 0;
  }
  .navbar nav ul {
    display: flex;
  }
  .navbar nav a {
    color: black;
    font-size: 1em;
    padding: 0.1em 1em;
  }
  .navbar nav .primary-nav {
    margin: 0;
  }
  .navbar nav li.go-premium-cta a {
    color: grey;
    border: solid;
    font-weight: bold;
    border-radius: 3em;
    margin-top: -0.2em;
  }
  .navbar nav:hover {
    color: white;
  }
}
.everything {
  height: 1000px;
  text-align: center;
}
.everything img {
  margin-top: 50px;
  height: 150px;
  width: 150px;
}/*# sourceMappingURL=comments.css.map */