body,
html {
  height: 100%;
  background: #eef0ff;
}
.wrapper {
  width: 100%;
  height: 100%;
  display: flex;
}
.wrapper .container {
  margin: auto;
  text-align: center;
  padding: 3rem 0 4rem 0;
}
.wrapper .container h1 {
  font-family: GothamProLight, sans-serif;
  font-size: 3.5rem;
}
.wrapper .container .lessons {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
  justify-content: center;
}
.wrapper .container a {
  font-family: GothamPro, sans-serif;
  font-size: 1.5rem;
  margin: 0.5rem;
  color: #696969;
  padding: 0.5rem 1rem 0.7rem 1rem;
  border: 2px solid #41c4e0;
  transition: 0.5s all;
}
.wrapper .container a:not(.inactive):hover {
  background: #41c4e0;
  color: #fff;
}
.wrapper .container a.inactive {
  filter: grayscale(100%);
  cursor: not-allowed;
}
.wrapper .container h2 {
  width: 100%;
  margin: 1.5rem 0;
  font-family: GothamPro, sans-serif;
}
@media screen and (max-width: 425px), screen and (max-width: 815px) and (orientation: landscape) {
  html {
    font-size: 80%;
  }
  .wrapper .container {
    max-width: 95%;
    box-sizing: border-box;
  }
  .wrapper .container h1 {
    font-size: 3rem;
  }
}
/*# sourceMappingURL=index.css.map */