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

body {
  background: #242424;
}

.quote-box {
  background: #ffffff;
  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 0px rgba(0, 0, 0, 0.15);
}

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

.quote-box h2::after {
  content: "";
  width: 24%;
  height: 3px;
  border-radius: 3px;
  background: rgb(23, 124, 230);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

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

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

.quote-box span {
  display: block;
  margin-top: 10px;
  float: right;
  position: relative;
  font-style: italic;
}

.quote-box span::before {
  content: "";
  width: 20px;
  height: 2px;
  background: rgb(24, 124, 230);
  position: absolute;
  top: 50%;
  left: -30px;
}

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

.quote-box button {
  background: rgb(23, 124, 230);
  color: #ffffff;
  border-radius: 25px;
  border: 1px solid rgb(23, 124, 230);
  width: 140px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  cursor: pointer;
  font-weight: bold;
}

.quote-box button:hover {
  border-color: #333333;
}

.quote-box button img {
  width: 14%;
  margin-right: 10px;
}

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

@media only screen and (max-width: 568px) {
  .quote-box {
    width: 80%;
  }
  .quote-box h2 {
    font-size: 20px;
  }
  .quote-box blockquote {
    font-size: 18px;
  }
  .quote-box button {
    width: 120px;
    height: 35px;
  }
}
