@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@400,700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: hsl(216, 12%, 8%);
  color: hsl(0, 0%, 100%);
  font-family: "Overpass", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
}
@media (min-width: 576px) {
  body {
    line-height: 1.6;
  }
}

main {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
  width: 100%;
}

.container {
  width: 325px;
}
@media (min-width: 576px) {
  .container {
    width: 410px;
  }
}

.d-none {
  display: none;
}

img {
  height: auto;
  max-width: 100%;
}

.card {
  background: linear-gradient(225deg, #242a32, #1a1d24);
  border-radius: 15px;
  padding: 25px;
}
.card-header_circle {
  align-items: center;
  background-color: hsl(213, 19%, 18%);
  border-radius: 50%;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.card-header_circle img {
  height: 14px;
}
@media (min-width: 576px) {
  .card-header_circle img {
    height: 16px;
  }
}
@media (min-width: 576px) {
  .card-header_circle {
    height: 50px;
    width: 50px;
  }
}
.card-body h1 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 16px;
}
@media (min-width: 576px) {
  .card-body h1 {
    font-size: 1.625rem;
    margin-bottom: 10px;
    margin-top: 25px;
  }
}
.card-body p {
  color: hsl(217, 12%, 63%);
  font-size: 0.875rem;
}
@media (min-width: 576px) {
  .card-body p {
    font-size: 0.9375rem;
  }
}
.card-body_input ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 30px 0 25px;
}
.card-body_input ul li button {
  align-items: center;
  background-color: hsl(213, 19%, 18%);
  border: none;
  border-radius: 50%;
  color: hsl(217, 12%, 63%);
  cursor: pointer;
  display: flex;
  font-family: "Overpass", sans-serif;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  outline: none;
  transition: all 0.3s ease-in-out;
  width: 40px;
}
.card-body_input ul li button:focus {
  background-color: hsl(217, 12%, 63%);
  color: hsl(0, 0%, 100%);
}
.card-body_input ul li button:hover {
  background-color: hsl(25, 97%, 53%);
  color: hsl(0, 0%, 100%);
}
@media (min-width: 576px) {
  .card-body_input ul li button {
    height: 50px;
    width: 50px;
  }
}
@media (min-width: 576px) {
  .card-body_input ul {
    margin: 35px 0;
  }
}
.card-body_btn {
  width: 100%;
}
.card-body_btn button {
  background-color: hsl(25, 97%, 53%);
  border: 0;
  border-radius: 99999px;
  color: hsl(0, 0%, 100%);
  cursor: pointer;
  font-family: "Overpass", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  outline: none;
  padding: 14px 0;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.card-body_btn button:hover, .card-body_btn button:focus {
  background-color: hsl(0, 0%, 100%);
  color: hsl(25, 97%, 53%);
}
@media (min-width: 576px) {
  .card-body_btn button {
    padding: 12px 0;
  }
}
@media (min-width: 576px) {
  .card {
    border-radius: 30px;
    padding: 30px;
  }
}

.thankyou-card {
  padding: 35px 25px;
}
.thankyou-card .card-header {
  display: flex;
  justify-content: center;
}
.thankyou-card .card-header img {
  height: 95px;
}
@media (min-width: 576px) {
  .thankyou-card .card-header img {
    height: 110px;
  }
}
.thankyou-card .card-body {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.thankyou-card .card-body_hightlight {
  background-color: hsl(213, 19%, 18%);
  border-radius: 9999px;
  margin-top: 25px;
  padding: 4px 20px;
}
@media (min-width: 576px) {
  .thankyou-card .card-body_hightlight {
    margin-top: 30px;
    padding: 4px 20px;
  }
}
.thankyou-card .card-body_hightlight p {
  color: hsl(25, 97%, 53%);
}
.thankyou-card .card-body h1 {
  margin-bottom: 10px;
  margin-top: 25px;
}
@media (min-width: 576px) {
  .thankyou-card .card-body h1 {
    margin-top: 30px;
  }
}
@media (min-width: 576px) {
  .thankyou-card {
    padding: 45px 35px;
  }
}

.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(25, 97%, 53%);
}/*# sourceMappingURL=style.css.map */