@import url("https://fonts.googleapis.com/css2?family=Changa:wght@200&family=Exo:wght@100;300&family=Poppins:wght@400;700&family=Press+Start+2P&display=swap");
:root {
  --primary-color: #00a7f3;
}

body {
  background: #f2f2f2;
  margin: 0;
  font-family: 'Poppins';
}

.navbar {
  background: #1f2835;
  padding: 1em;
}

.navbar .logo {
  text-decoration: none;
  font-family: 'Exo', sans-serif;
  font-weight: bold;
  color: #dbdbdb;
  font-size: 1.2em;
}

.navbar .logo span {
  color: #dbdbdb;
}

.navbar nav {
  display: none;
}

.navbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: space-between;
}

.navbar .mobile-menu {
  cursor: pointer;
}

a {
  color: #dbdbdb;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

section {
  padding: 5em 2em;
}

.logo-section {
  display: none;
}

.hero {
  text-align: center;
}

.item-section .cta-link {
  font-size: 1.2em;
}

.item-section a:hover {
  text-decoration: none;
}

.item-section .item-img {
  width: 100%;
  height: 300px;
}

.item-section #online-mines-img {
  margin-top: 2em;
  background-image: url("/images/online_mines_com.png");
}

.item-section ul {
  list-style-type: circle;
}

.item-section li {
  margin-left: 3em;
}

.item-section-light {
  background-color: #f2f2f2;
  color: #1f2835;
}

.item-section-light .tag {
  border-radius: 3em;
  padding: .2em 1em;
  border: 3px solid #1f2835;
  font-weight: bold;
}

.item-section-light .cta-link {
  color: #f72b2b;
}

.item-section-light a {
  color: #3c3ed4;
}

.item-section-dark {
  background-color: #384659;
  color: #f2f2f2;
}

.item-section-dark .tag {
  border-radius: 3em;
  padding: .2em 1em;
  border: 3px solid #f2f2f2;
  font-weight: bold;
}

.item-section-dark .cta-link {
  color: #d53e3e;
}

.item-section-dark a {
  color: #999aff;
}

.hero-image {
  width: 70%;
  margin-top: 3em;
}

h2 {
  font-size: 2em;
}

label {
  display: block;
  font-size: 1.2em;
  margin-bottom: .5em;
}

input, textarea {
  width: 100%;
  padding: .8em;
  margin-bottom: 1em;
  border-radius: .3em;
  border: 1px solid gray;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="submit"] {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 1.3em;
  border: none;
  margin-bottom: 5em;
  border-radius: 5em;
  display: inline-block;
  padding: .8em 2em;
  width: unset;
  cursor: pointer;
}

nav.menu-btn {
  display: block;
}

nav {
  position: fixed;
  z-index: 999;
  width: 66%;
  right: 0;
  top: 0;
  background: #20272E;
  height: 100vh;
  padding: 1em;
}

nav ul.primary-nav {
  margin-top: 5em;
}

nav li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: .5em;
  font-size: 1.3em;
  text-align: right;
}

nav li a:hover {
  font-weight: bold;
}

.mobile-menu-exit {
  float: right;
  margin: .5em;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .mobile-menu, .mobile-menu-exit {
    display: none;
  }
  .navbar .container .logo {
    display: none;
  }
  .navbar .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 180px auto;
        grid-template-columns: 180px auto;
  }
  .navbar 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;
  }
  .navbar nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar nav a {
    color: #dbdbdb;
    font-size: 1em;
    padding: .1em 1em;
  }
  .navbar nav ul.primary-nav {
    margin: 0;
  }
  .navbar nav li.current a {
    font-weight: bold;
  }
  .navbar nav li.go-premium-cta a {
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    font-weight: bold;
    border-radius: 5em;
    margin-top: -.2em;
  }
  .navbar nav li.go-premium-cta a:hover {
    background: var(--primary-color);
    color: white;
  }
  .logo-section {
    display: block;
    background-color: #1f2835;
    text-align: center;
  }
  .logo-section h1 {
    font-family: 'Exo', sans-serif;
    color: #dbdbdb;
    font-size: 12em;
    font-weight: lighter;
    margin: 0;
  }
  .logo-section h2 {
    font-family: 'Press Start 2P', cursive;
    color: #dbdbdb;
    font-size: 4em;
    margin: 0;
  }
  .item-section .cta-link {
    font-size: 1.6em;
  }
}

@media only screen and (min-width: 1080px) {
  .container {
    width: 1080px;
    margin: 0 auto;
  }
  section {
    padding: 4em 4em;
  }
  .hero .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/*# sourceMappingURL=main.css.map */