@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");
* {
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: url(../images/pattern-background-mobile.svg) no-repeat #e0e8ff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  width: 90%;
  background-color: white;
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  box-shadow: 0 40px 40px -20px rgba(13, 48, 189, 0.15);
}
.card .card-header img {
  max-width: 100%;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
}
.card .card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.card-summary h1 {
  color: #1f2e55;
  font-weight: 900;
  font-size: 1.375rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .card-summary h1 {
    font-size: 1.75rem;
  }
}
.card-summary p {
  font-size: 0.938rem;
  line-height: 1.65;
  color: #717fa6;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .card-summary p {
    font-size: 1rem;
  }
}

.card-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.375rem;
  padding: 1rem;
  background-color: #f7f9ff;
  border-radius: 11px;
}
.card-order .order-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.card-order .order-left img {
  width: 3rem;
  height: 3rem;
}
.card-order .order-left h2 {
  color: #1f2e55;
  font-size: 0.938rem;
  line-height: 1.65;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .card-order .order-left h2 {
    font-size: 1rem;
  }
}
.card-order .order-left p {
  font-size: 0.938rem;
  line-height: 1.65;
  color: #717fa6;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .card-order .order-left p {
    font-size: 1rem;
  }
}
.card-order .order-right a {
  text-decoration: none;
  color: #382ae1;
  font-size: 0.938rem;
  line-height: 1.65;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .card-order .order-right a {
    font-size: 1rem;
  }
}
.card-order .order-right a:hover {
  color: #766cf1;
}

.card-button {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.btn-primary {
  border: none;
  background-color: #382ae1;
  height: 3.125rem;
  border-radius: 11px;
  box-shadow: 0 20px 20px rgba(56, 42, 225, 0.19);
  font-size: 0.938rem;
  line-height: 1.65;
  font-weight: 900;
  color: white;
}
@media screen and (min-width: 768px) {
  .btn-primary {
    font-size: 1rem;
  }
}
.btn-primary:hover {
  background-color: #766cf1;
}

.btn-secondary {
  border: none;
  background-color: transparent;
  color: #717fa6;
  font-size: 0.938rem;
  line-height: 1.65;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .btn-secondary {
    font-size: 1rem;
  }
}
.btn-secondary:hover {
  color: #1f2e55;
}

@media screen and (min-width: 768px) {
  body {
    background: url(../images/pattern-background-desktop.svg) no-repeat #e0e8ff;
  }
  .card {
    width: 55%;
  }
  .card .card-content {
    padding: 3rem;
  }
  .card-order {
    justify-content: space-between;
  }
}/*# sourceMappingURL=styles.css.map */