@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --primary: #f3b329;
  --transition: all 0.3s linear;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a,
a:hover,
a:active {
  text-decoration: none;
}

body {
  font-family: "Montserrat", sans-serif;
}

p {
  line-height: 1.5;
  color: #000;
}

h1,
h2,
h3,
h5,
h4,
h6 {
  font-family: "Montserrat", sans-serif;
  color: #000;
}

.coming__soon {
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
}
.coming__soon::after {
  content: "";
  background-image: url("../img/bg.png");
  background-repeat: no-repeat;
  width: 100%;
  height: 680px;
  background-position: bottom;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-size: contain;
}

.coming__soon h1 {
  color: var(--primary);
  font-size: 59px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: -2.95px;
}

.coming__soon p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.36px;
  margin: 15px 0;
}
.coming__soon p a {
  text-decoration: underline;
  color: var(--primary);
}
.coming__soon p a:hover {
  color: #c65d48;
}
.coming__soon .logo {
  margin-top: 70px;
}
.coming__soon .txt {
  margin-top: 90px;
}
.coming__soon > div {
  margin: 0 auto;
  padding-right: 250px;
}
.coming__soon .author {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.4px;
  margin-top: 20px;
}
.coming__soon .author span {
  color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 1200px) {
  .coming__soon .logo img {
    width: 200px;
  }
}
@media (max-width: 960px) {
  .coming__soon > div {
    margin: 0;
    padding-right: 0;
  }
  .coming__soon h1 {
    font-size: 49px;
    line-height: 60px;
  }
  .coming__soon .author {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 640px) {
  .coming__soon h1 {
    font-size: 39px;
    line-height: 50px;
  }
  .coming__soon p {
    font-size: 16px;
  }
  .coming__soon p br {
    display: none;
  }
  .coming__soon .txt {
    margin-top: 60px;
  }
  .coming__soon .logo {
    margin-top: 40px;
  }
}
