@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@400;600&display=swap");

/* font-family: 'Open Sans',
sans-serif;
font-family: 'Poppins',
sans-serif; */
* {
  margin: 0;
  padding: 0;
}

body {
  /* background-image: url(https://digitshack.com/codepen/mentor7/bg-desktop.svg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh; */
  background-color: #fafafa;
  /* background-color: hsl(276, 56%, 55%); */
}

/* .container {
  max-width: 1320px;
  margin: 0 auto;
  height: 100vh;
} */

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 90%;
  padding-top: 20px;
  padding-bottom: 40px;
  margin: 0 2rem;
}

.header img {
  width: 300px;
  padding-bottom: 05px;
}

.main {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 45px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-text p {
  color: #fff;
  font-family: "Outfit", sans-serif;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-text button {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  background: #fff;
  padding: 13px 50px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 8px 17px -8px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
}

.hero-text a:hover {
  background-color: hsl(300, 69%, 71%);
  color: white;
}

@media only screen and (max-width: 1440px) {
  .hero-img img {
    width: 100%;
  }
}

@media only screen and (max-width: 912px) {
  .main {
    flex-direction: column;
    text-align: center;
  }
  .header img {
    display: block;
    margin: 0 auto;
  }
  .social {
    text-align: center;
    margin-top: 50px;
  }

  .hero-text h1 {
    line-height: 1.5;
    font-size: 26px;
  }

  .hero-text a {
    padding: 10px 70px;
  }
}

.link i {
  padding-left: 7px;
}

.link:hover {
  text-decoration: underline;
  background-color: black;
}
.footer {
  background-color: rgba(
    255,
    255,
    255,
    0.3
  ); /* Adjust the last value (0.3) for transparency */
  color: white;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.footer-link {
  font-family: "Outfit", sans-serif;
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: smaller;
}
