@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

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

body {
  background: #e8f0fe;
}

.quote-box {
  background-color: #fefcfb;
  width: 700px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.quote-box h2 {
  font-size: 32px;
  margin-bottom: 40px;
  position: relative;
  color: #003554;
}

.quote-box h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 45%;
  width: 75px;
  height: 3px;
  border-radius: 3px;
  background-color: #185abc;
}

.quote-box blockquote {
  font-size: 26px;
  min-height: 110px;
  color: #3476d8;
  font-weight: 500;
}

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

.quote-box span {
  display: block;
  margin-top: 10px;
  position: relative;
  color: #4185ec;
  float: right;
  font-weight: 500;
  font-size: 18px;
}

.quote-box span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 15px;
  height: 2px;
  background-color: #0582ca;
}

.quote-box div {
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.quote-box button {
  background-color: #185abc;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  color: #fff;
  border-radius: 25px;
  width: 150px;
  height: 50px;
  border: none;
  outline: none;
  display: flex;
  margin: 5px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}

.quote-box button:nth-child(2) {
  background: transparent;
  color: #222;
}

.quote-box .fa-x-twitter {
  font-size: 17px;
  padding-right: 6px;
}
