/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;

}

.main{
  background: url(../img/coming-soon-bg.jpg);
      background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


/* Container */
.coming-soon-container {
  max-width: 700px;
  width: 90%;
}

/* Logo */
.logo {
    max-width: 200px;
    margin-bottom: 100px;
}

/* Text Styles */
.subtitle {
    font-size: 13px;
    letter-spacing: 6px;
    margin-bottom: 10px;
    color: #e3e0e0;
}

h1 {
     font-size: 5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.description {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Social Section */
.social {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.social span {
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    position: relative;
    padding-right: 110px;
}
.social span:after{
    position: absolute;
    content: "";
    background: #2d765e;
    width: 91px;
    height: 2px;
    top: 9px;
    left: 111px;
}
.line {
  width: 60px;
  height: 1px;
  background-color: #fff;
  opacity: 0.3;
}

.icons {
  display: flex;
  gap: 20px;
}

.icons a {
     color: #42b98a;
  font-size: 18px;
  transition: 0.3s;
}

.icons a:hover {
  color: #fff;
  transform: scale(1.2);
}
@media only screen and (max-width: 600px) {
  h1 {
    font-size: 2rem;
}
.social span {
    padding-right: 102px;
}
}
