/* css bolier plate  */

@import url("https://fonts.googleapis.com/css2?family=PLayfair+Display:ital,:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Playfair Display", serif;
}

.quote-box {
  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);
  width: 80%;
  max-width: 700px;
}

.quote-box h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.quote-box h2:after {
  content: "";
  width: 75px;
  height: 3px;
  border-radius: 3px;
  background-color: rgb(23, 124, 229);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.quote-box blockquote {
  font-size: 26px;
  min-height: 110px;
}

.quote-box blockquote::before,
.quote-box blockquote::after {
  content: '"';
}

.quote-box span {
  display: block;
  float: right;
  position: relative;
}
.quote-box span::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: rgb(23, 124, 229);
  position: absolute;
  top: 50%;
  left: -30px;
}

.quote-box div {
  display: flex;
  justify-content: center;
  align-items: center;
}
