
@font-face{
  font-family: gothamRounded;
  src: url(/static/welp/fonts/gothamRounded.ttf);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #f3f8f7 49.91%,
    rgba(255,0,0, 0.3) 100%
  );
  font-family: gothamRounded;
}

#product-landing {
  max-width: 900px;
  width: 98%;
  margin: 0 auto;
  padding-top: 30px;
}

img {
  width: 100%;
}

#logo {
  width: 193px;
  height: 40.64px;
}


#hero {
  display: flex;
  align-items: center;
  margin-top: 0px;

}

 #hero-text {
  color: #333333;
}

#hero-text h1 {
  font-size: 58px;
  line-height: 68px;
}

#hero-text p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
}

.hero-btn {
  display: inline-block;
  height: 46.28px;
  margin-top: 15px;
}

#apple {
  max-width: 138.44px;
  margin-right: 22px;
}

#google {
  max-width: 156.19px;
}

#hero-visual {
  position: relative;
}

#hero-img {
  position: relative;
  top: 0px;
}

.main-screen{
  width: 300px;
}

#main {
  position: relative;
  height: 680px;
}

.main-img {
  width: calc(100% / 4 + 34px);
  position: absolute;
}

.main-img img {
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.25));
}

.main-img:nth-of-type(1) {
  left: -50px;
  top: 100px;
  bottom: 0;
}

.main-img:nth-of-type(2) {
  right: 26%;
  left: 20%;
  bottom: 0;
}

.main-img:nth-of-type(4) {
  right: 26%;
  bottom: 0;
  top: 100px;
}

.main-img:nth-of-type(5) {
  right: 0;
  bottom: 0;
}

@media (max-width: 914px) {
 #hero-text h1 {
    font-size: 45px;
  }

  #hero-text p {
    font-size: 18px;
  }

  #apple,
  #google {
    width: 80% !important;
  }

  .main-img:nth-of-type(2) {
    left: 20%;
  }

  .main-img:nth-of-type(3),
  .main-img:nth-of-type(4) {
    right: 26%;
  }
}
@media (max-width: 720px) {
  #apple,
  #google {
    width: 40% !important;
  }

  #hero-text h1 {
    font-size: 40px;
  }

  #hero-text p {
    font-size: 16px;
  }

  #main .main-img {
    transform: translateX(10%);
  }

  .main-img:nth-of-type(2) {
    left: 19%;
  }

  #main {
    height: 600px;
  }
}


@media (max-width: 600px) {
  #hero-visual {
    display: none;
  }

  #hero-intro {
    width: 100%;
    text-align: center;
  }
}
