body {
  background-color: #1A1919;
}


.logo {
  height: 200px;
  margin-top: 50px;
}

.card {
  background-color: #363636;
  padding: 15px;
  border-radius: 15px;
}


/* Typography */

h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 3rem;
  color: white;
}


h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 2rem;
  color: white;
}

h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 2rem;
  color: #242424;
}

h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 2rem;
  color: white;
}

p {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  color: white;
}

b {
  color: #62BDA9;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5rem;
}

.green {
  color: #62BDA9;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 2rem;
}

a {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5rem;
  color: #747474;
  text-decoration: none;
}

a:hover {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5rem;
  color: white;
  text-decoration: none;
}









@media only screen and (max-width: 570px) {
  body {
    background-color: #1A1919;
  }

  h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
  }

  h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 2rem;
    color: white;
  }

  h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 2rem;
    color: #62BDA9;
  }


  h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    margin-top: 30px;
    font-weight: 600;
    line-height: 2rem;
    color: white;
  }
}




.bubbles {
  position: static;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  top: 0;
  left: 0;
}

.bubble {
  position: absolute;
  bottom: -100px;
  width: 40px;
  height: 40px;
  background: #363636;
  border-radius: 50%;
  opacity: 0.5;
  animation: rise 10s infinite ease-in;
}

.bubble:nth-child(1) {
  width: 40px;
  height: 40px;
  left: 10%;
  animation-duration: 8s;
}

.bubble:nth-child(2) {
  width: 20px;
  height: 20px;
  left: 20%;
  animation-duration: 5s;
  animation-delay: 1s;
}

.bubble:nth-child(3) {
  width: 50px;
  height: 50px;
  left: 35%;
  animation-duration: 7s;
  animation-delay: 2s;
}

.bubble:nth-child(4) {
  width: 80px;
  height: 80px;
  left: 50%;
  animation-duration: 11s;
  animation-delay: 0s;
}

.bubble:nth-child(5) {
  width: 35px;
  height: 35px;
  left: 55%;
  animation-duration: 6s;
  animation-delay: 1s;
}

.bubble:nth-child(6) {
  width: 45px;
  height: 45px;
  left: 65%;
  animation-duration: 8s;
  animation-delay: 3s;
}

.bubble:nth-child(7) {
  width: 90px;
  height: 90px;
  left: 70%;
  animation-duration: 12s;
  animation-delay: 2s;
}

.bubble:nth-child(8) {
  width: 25px;
  height: 25px;
  left: 80%;
  animation-duration: 6s;
  animation-delay: 2s;
}

.bubble:nth-child(9) {
  width: 15px;
  height: 15px;
  left: 70%;
  animation-duration: 5s;
  animation-delay: 1s;
}

.bubble:nth-child(10) {
  width: 90px;
  height: 90px;
  left: 25%;
  animation-duration: 10s;
  animation-delay: 4s;
}

@keyframes rise {
  0% {
    bottom: -100px;
    transform: translateX(0);
  }

  50% {
    transform: translate(100px);
  }

  100% {
    bottom: 1080px;
    transform: translateX(-200px);
  }
}




/* Tablet

@media only screen and (max-width: 600px) {
    body {
      background-color: #1A1919;
    }

    h1 {
        font-family: 'Raleway', sans-serif;
        font-size: 30px;
        font-weight: 800;
        line-height: 4rem;
        color: white;
    }

    h2 {
        font-family: 'Raleway', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: white;
    }

    h3 {
        font-family: 'Raleway', sans-serif;
        font-size: 13px;
        font-weight: 600;
        line-height: 2rem;
        color: white;
    }

    .mobile-trigger {
        font-family: 'Raleway', sans-serif;
        font-size: 20px;
        font-weight: 600;
        line-height: 4rem;
        margin-bottom: 30px;
        color: white;
    }

    h4 {
        font-family: 'Raleway', sans-serif;
        font-size: 14px;
        margin-top: 30px;
        font-weight: 600;
        line-height: 2rem;
        color: white;
    }
} */