@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Tamil:wght@900&family=Platypi:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Platypi", serif;
}
body {
  background-color: #bbc6fa;
}

.quote-box {
  background-color: #fff;
  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 rgb(0, 0, 0, 0.15);
}
.quote-box h2{
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
}

.quote-box h2::after{
    content: '';
    width: 85px;
    height: 3px;
    border-radius: 3px;
    background-color: #177ce5;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -10px;
}

.quote-box blockquote{
    font-size: 26px;
    min-height: 110px;
    
}
/* .quote-box blockquote::before,
.quote-box blockquote::after{
    content: ' " ';
} */

.quote-box span{
    display: block; 
    margin-top: 10px;
    float: right;
    position: relative;
}

/* .quote-box span::before{
    content: '';
    width: 10px;
    height: 2px;
    border-radius: 3px;
    background-color: #177ce5;
    position: absolute;
    top: 60%;
    left: -10px;
    transform: translate(-50%); 
    }
*/
.quote-box button{
    background-color: #177ce5;
    color: #fff;
    border-radius: 25px;
    /* padding: 10px; */
    border: 1px solid #177ce5;
    margin: 5px;
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.quote-box .button{
    display: flex;
    align-items: center;
    justify-content: center;
}