@import url("https://fonts.googleapis.com/css2?family=Long+Cang&family=Nunito+Sans:opsz,wght@6..12,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Playfair Display", serif;
}

body {
  background: #bbc6fa;
}
body .quote-box {
  background: rgba(255, 255, 255, 0.767);
  width: 700px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  body .quote-box {
    width: 80%;
  }
}
body .quote-box h2 {
  font-size: 32px;
  margin-bottom: 40px;
  position: relative;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.25rem;
  font-weight: 500;
  text-transform: capitalize;
}
@media screen and (max-width: 410px) {
  body .quote-box h2 {
    font-size: 28px;
  }
}
body .quote-box h2::after {
  content: "";
  width: 75px;
  height: 3px;
  border-radius: 5px;
  background: rgb(23, 124, 229);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
body .quote-box blockquote {
  font-size: 26px;
  min-height: 110px;
  font-size: 30px;
}
@media screen and (max-width: 410px) {
  body .quote-box blockquote {
    font-size: 25px;
  }
}
body .quote-box blockquote::before, body .quote-box blockquote::after {
  content: '"';
}
body .quote-box span {
  display: block;
  margin-top: 10px;
  float: right;
  position: relative;
}
body .quote-box span::before {
  content: "";
  width: 20px;
  height: 2px;
  background: rgb(23, 124, 229);
  position: absolute;
  top: 50%;
  left: -30px;
}
body .quote-box .btns {
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 425px) {
  body .quote-box .btns {
    flex-direction: column;
  }
}
body .quote-box .btns button {
  background: rgb(23, 124, 229);
  color: #fff;
  border-radius: 25px;
  border: 1px solid rgb(23, 124, 229);
  width: 150px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  cursor: pointer;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
  transition: 0.2s;
}
body .quote-box .btns button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.35);
}
body .quote-box .btns button:nth-child(2) {
  background-color: transparent;
  color: #333;
}
body .footer {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Nunito Sans", sans-serif;
  letter-spacing: 0.2rem;
}
body .footer a {
  text-decoration: none;
  color: #000000;
}/*# sourceMappingURL=style.css.map */