@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  font-family: "Open Sans", sans-serif;
  background: hsl(257, 40%, 49%);
}

*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  padding: 3.5rem 3.5rem 1rem 3.5rem;
  background-image: url("../docs/images/bg-mobile.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

h1 {
  font-family: "Poppins", sans-serif;
}

header {
  margin-bottom: 5rem;
}
header a img {
  width: 12rem;
}

main .img-container {
  margin-bottom: 5rem;
}
main .img-container img {
  width: 100%;
}
main .text-container {
  color: white;
  text-align: center;
}
main .text-container h1 {
  font-weight: 600;
  margin-bottom: 1rem;
}
main .text-container p {
  font-size: 1.2rem;
}
main .text-container button {
  margin: 2rem 0 5rem 0;
  background: white;
  outline: none;
  border: none;
  cursor: pointer;
  width: 15rem;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  color: hsl(257, 40%, 49%);
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease-in-out, background 0.2s ease-in-out;
}
main .text-container button:hover {
  color: white;
  background: hsl(300, 69%, 71%);
}

footer {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
footer .social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  transition: color 0.2s ease-in-out, border 0.2s ease-in-out;
}
footer .social-link:hover {
  color: hsl(300, 69%, 71%);
  border: 2px solid hsl(300, 69%, 71%);
}

.attribution {
  margin-top: 2rem;
  color: white;
}
.attribution a {
  color: white;
}

@media screen and (min-width: 992px) {
  body {
    background-image: url("../docs/images/bg-desktop.svg");
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  main {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
  }
  main .img-container,
  main .text-container {
    width: 50%;
    max-width: 700px;
  }
  main .text-container {
    margin-top: 1.5rem;
    text-align: start;
  }
  footer {
    justify-content: end;
    margin-right: 4rem;
  }
}

/*# sourceMappingURL=style.css.map */
