@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "IBM Plex Sans", sans-serif;
  background: top -200px right -200px no-repeat url("../assets/bg-main-mobile.png");
  color: hsl(244, 23%, 12%);
}
@media (min-width: 48rem) {
  html {
    background-image: url("../assets/bg-pattern-1.svg"), url("../assets/bg-main-tablet.png");
    background-position: top -50px right -50px, top -250px right -100px;
    background-repeat: no-repeat, no-repeat;
    background-size: 20rem, auto;
  }
}
@media (min-width: 64rem) {
  html {
    background-image: url("../assets/bg-pattern-1.svg"), url("../assets/bg-main-desktop.png");
    background-position: top -40px right, top -250px left -200px;
    background-repeat: no-repeat, no-repeat;
    background-size: 20rem, auto;
  }
}

@media (min-width: 48rem) {
  body {
    max-width: 80rem;
    margin: 0 auto;
  }
}

header {
  padding: 4rem 2rem;
}

h1 {
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -1px;
  margin: 2rem 0;
}
@media (min-width: 48rem) {
  h1 {
    font-size: 4rem;
    margin: 2rem 16rem 2rem 0;
  }
}
@media (min-width: 64rem) {
  h1 {
    font-size: 6rem;
    margin: 2rem 18rem 2rem 0;
  }
}

h2 {
  font-size: 2.5rem;
  margin: 1rem 0;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  margin: 1rem 0;
}
@media (min-width: 48rem) {
  p {
    font-size: 1.1rem;
  }
}

img {
  max-width: 100%;
}

button {
  border: unset;
  padding: 1.2rem 2rem;
  display: block;
  width: 100%;
  margin: 1rem 0;
  border-radius: 0.75rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
button.slate {
  background: hsl(244, 23%, 12%);
  color: hsl(20, 33%, 98%);
}
button.slate:hover, button.slate:focus, button.slate:active {
  background-color: hsl(177, 68%, 64%);
  color: hsl(244, 23%, 12%);
}
button.white {
  background-color: hsl(20, 33%, 98%);
}
button.white:hover, button.white:focus, button.white:active {
  background-color: hsl(33, 100%, 70%);
  color: hsl(244, 23%, 12%);
}

.intro {
  margin: 2rem;
}
@media (min-width: 48rem) {
  .intro p {
    font-size: 1.2rem;
    margin: 2rem 13rem 2rem 0;
  }
}
@media (min-width: 64rem) {
  .intro p {
    font-size: 1.4rem;
    margin: 2rem 26rem 2rem 0;
  }
}

.cta {
  background: hsl(244, 23%, 12%) no-repeat url("../assets/bg-pattern-2.svg");
  background-size: 80%;
  background-position: top center;
  margin-top: 12rem;
}
@media (min-width: 48rem) {
  .cta {
    margin: 16rem 2rem 12rem 2rem;
    border-radius: 0.75rem;
    position: relative;
    background-position: top left;
    background-size: auto;
  }
}
@media (min-width: 64rem) {
  .cta {
    background-position: top center;
  }
}
.cta img {
  max-width: 13rem;
  position: relative;
  top: -7rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 48rem) {
  .cta img {
    left: 10%;
    transform: unset;
    max-width: 17rem;
  }
}
@media (min-width: 64rem) {
  .cta img {
    max-width: 22rem;
  }
}
.cta .orange {
  background-color: hsl(12, 94%, 65%);
  padding: 2rem 2rem 6rem 2rem;
  margin-top: -4rem;
}
@media (min-width: 48rem) {
  .cta .orange {
    position: absolute;
    right: 8%;
    bottom: -6rem;
    max-width: 50%;
    margin: 0;
    border-radius: 0.75rem;
    padding: 2rem 3rem;
  }
}
@media (min-width: 64rem) {
  .cta .orange {
    max-width: 30rem;
  }
}
.cta .orange .price {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  margin: 2rem 0;
}
.cta .orange .large {
  font-size: 4rem;
  font-weight: 700;
}

ul.socials {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

footer {
  padding: 2rem;
}
@media (min-width: 64rem) {
  footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8rem;
  }
}
footer .logo {
  margin: 4rem 0 1rem 0;
}
@media (min-width: 64rem) {
  footer .logo {
    margin: 0 0 2rem 0;
  }
}
footer p {
  margin: 0;
}
footer a {
  text-decoration: none;
  font-weight: 700;
  color: hsl(244, 23%, 12%);
  transition: all 0.3s ease;
}
footer a:hover, footer a:focus, footer a:active {
  color: hsl(12, 94%, 65%);
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex: 1;
}/*# sourceMappingURL=styles.css.map */