/* body {
  font-family: "Poppins";
} */

.h1 {
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.h2 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

p {
  font-size: 16px;
}

.c1 {
  background: linear-gradient(251deg, #12a2ed 19.02%, #2fb8ff 69.55%);
}

.c2 {
  background: linear-gradient(263deg, #ff8227 24.48%, #ff9344 83.88%);
}

.c3 {
  background: linear-gradient(261deg, #34f5a4 38.47%, #50ffb5 84.05%);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.logo {
  font-size: 1.8rem;
  color: rgb(5, 5, 116);
}

.hamburger {
  cursor: pointer;
}

.hamburger .line {
  display: block;
  width: 40px;
  height: 5px;
  margin-bottom: 10px;
  background-color: black;
}

.nav__link {
  position: fixed;
  width: 94%;
  top: 5rem;
  left: 18px;
  z-index: 5;
  background-color: white;
}

.nav__link a {
  display: block;
  text-align: center;
  padding: 10px 0;
}

.hide {
  display: none;
}

@media screen and (min-width: 600px) {
  .nav__link {
    display: block;
    position: static;
    width: auto;
    margin-right: 20px;
    background: none;
  }

  .nav__link a {
    display: inline-block;
    padding: 15px 20px;
  }

  .hamburger {
    display: none;
  }
}
