@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Karla:wght@400;700&family=Kumbh+Sans:wght@400;700&family=Lexend+Deca&family=Manrope:wght@600;800&family=Poppins:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Karla:wght@400;700&family=Kumbh+Sans:wght@400;700&family=Lexend+Deca&family=Manrope:wght@600;800&family=Open+Sans&family=Poppins:wght@400;600&display=swap");

* {
  margin: 0;
  padding: 0;
}

/* 
  font-family: 'Open Sans', sans-serif;
  font-family: 'Poppins', sans-serif;

*/

body {
  min-height: 100vh;
  background-image: url("./images/bg-desktop.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: hsl(257, 40%, 49%);
}

.container {
  max-width: 1320px;
  /* displ ay: block; */
  margin: 0 auto;
  height: 100vh;
}

.wrapper {
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 0;
  margin: 0 2rem;
}

.header img {
  width: 190px;
  padding-bottom: 20px;
}

.main {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content h1 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.hero-content p {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-content a {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  background-color: #fff;
  padding: 13px 50px;
  border-radius: 25px;
  box-shadow: 0 8px 17px -8px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
}

.hero-content a:hover {
  background-color: hsl(300, 69%, 71%);
  color: white;
}

.social {
  text-align: right;
}

.social a i {
  color: #fff;
  font-size: 18px;
  position: relative;
  transition: all 0.3s ease;
}

.social a:not(:first-child) {
  margin-left: 2rem;
}

.social a i::after {
  content: "";
  position: absolute;
  height: 40px;
  width: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  left: -13px;
  bottom: -10px;
  transform: all 0.3s ease;
}

.social a:nth-child(2) {
  margin-left: 2.4rem;
}

.social a:hover i {
  color: hsl(300, 69%, 71%);
}
.social a i:hover::after {
  border-color: hsl(300, 69%, 71%);
}

@media screen and (max-width: 1440px) {
  .hero-img img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .main {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .social {
    text-align: center;
    margin-top: 50px;
  }

  .hero-text a {
    padding: 10px 70px;
  }
}
