/* Reset styles */
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
ul,
ol,
li,
form,
label,
table,
tbody,
thead,
tfoot,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Typography */
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

/* Links */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Layout */
.container {
  width: 90%;
  margin: 0 auto;
  padding: 0 20px; /* Adjust as needed */
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

h3 {
  font-size: 1.264rem;
  line-height: 1.1;
  font-weight: 700;
}

h2 {
  font-size: 2.864rem;
  line-height: 1.1;
  font-weight: 700;
  margin: 10px 0;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn {
  background: #121212;
  padding: 12px 20px;
  margin-left: 25px;
  color: #fff;
  border-radius: 6px;
}
.btn.border {
  border: 1px solid #7b7979;
  color: #7b7979;
  background: transparent;
}

/* Add your own custom styles below */
main {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #f6f1ed;
}
main::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url(../images/coming\ soon.png);
  width: 60%;
  height: 100%;
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 1;
}
main header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 5%;
  width: 90%;
  z-index: 9;
}
main header .logo img {
  width: 150px;
}
main .content {
  width: 568px;
  max-width: 100%;
  z-index: 2;
  text-align: center;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%);
}
main .content p {
  font-weight: 300;
  color: #7b7979;
  margin-top: 10px;
}
main .content p span {
  margin: 0 5px;
}
main .content p a {
  color: #7b7979;
}
main .content .social {
  margin-top: 20px;
}
main .content .social a {
  margin: 0 1px;
  background-color: #f7b7d2;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
}

@media screen and (max-width: 1400px) {
  main::before {
    height: 68vh;
  }
  main .content {
    bottom: 20px;
  }
}
@media screen and (max-width: 900px) {
  main::before {
    height: 68vh;
    width: 100%;
    left: 0;
    bottom: 0;
    top: auto;
    transform: translate(0px, 160px);
  }
  main .content {
    bottom: auto;
    top: 30%;
  }
}
@media screen and (max-width: 500px) {
  main {
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  main header .flex {
    justify-content: center;
  }
  main header .nav {
    position: fixed;
    bottom: 30%;
    display: none;
  }
  main .content {
    top: 25%;
  }
}/*# sourceMappingURL=style.css.map */