@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  color: white;
}

main {
  background-image: url(../assets/home_bg.png);
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* gap: 230px; */
}
h1 {
  font-size: 92px;
  font-weight: 900;
  line-height: 116.848%;
  text-transform: uppercase;
}
.line {
  background-color: white;
  width: 72px;
  height: 3px;
}
.email {
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
}
.email a {
  text-decoration: none;
}
.top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  height: 100%;
  /* padding-top: 100px; */
  /* border: 1px solid red; */
}
.bottom img {
  width: 364px;
}
.bottom {
  /* border: 1px solid red; */
}
@media (max-width: 767px) {
  main {
    padding: 20px;
    height: 100dvh;
    background-image: url(../assets/home_bg_3.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: center; */
  }
  h1 {
    font-size: 46px;
  }
  .email {
    font-size: 18px;
  }
  .line {
    width: 36px;
    height: 1px;
  }
  .top {
    padding-top: 0;
    gap: 10px;
    justify-content: start;
  }
  .bottom img {
    width: 189px;
    padding-bottom: 20px;
  }
}
@media (max-width: 349px) {
  h1 {
    font-size: 40px;
  }
}
