@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;700&display=swap");
* {
  font-family: "Barlow", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.main-wrapper {
  background-image: url("./assets/bg.png");
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
}
.main-wrapper .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.main-wrapper .content-wrapper img {
  margin-bottom: 20px;
  width: 100px;
  height: 120px;
}
.main-wrapper .content-wrapper .content {
  text-align: center;
}
.main-wrapper .content-wrapper .content h1 {
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: white;
  padding-bottom: 10px;
}
.main-wrapper .content-wrapper .content p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: white;
}
@media (min-width: 768px) and (max-width: 1400px) {
  .main-wrapper .content-wrapper img {
    margin-bottom: 20px;
    width: 100px;
    height: 120px;
  }
  .main-wrapper .content-wrapper .content h1 {
    font-size: 70px;
  }
  .main-wrapper .content-wrapper .content p {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .main-wrapper .content-wrapper .img-wrapper {
    flex: 2;
    display: flex;
    align-items: center;
  }
  .main-wrapper .content-wrapper .img-wrapper img {
    margin-bottom: 20px;
    width: 80px;
    height: 100px;
  }
  .main-wrapper .content-wrapper .content {
    margin-bottom: 25px;
  }
  .main-wrapper .content-wrapper .content h1 {
    font-size: 38px;
  }
  .main-wrapper .content-wrapper .content p {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .main-wrapper {
    background-image: url("./assets/mobile-bg.png");
  }
}

/*# sourceMappingURL=style.css.map */
