@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Playfair Display", serif;
}
body{
    /* background:  #1DA1F2; */
    background: #87CEEB;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content:center;
}
.quote-box{
    background:#fff;
    width: 100%;
    max-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-family:32px;
    margin-bottom: 40px;
    position: relative;
    text-align:center;

}
.quote-box h2::before{
    content:'';
    width: 75px;
    height: 3px;
    border-radius: 3px;
    background: rgb(5, 143, 197);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);



}
.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;

}
.minus::before{
    content: '';
    width: 20px;
    height: 2px;
    background:  rgb(5, 143, 197);
    position: absolute;
    top: 60%;
    left: -30px;
}
.quote-box div{
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: center;

}
.quote-box button{
    background:  rgb(5, 143, 197);
    color: #fff;
    border-radius: 25px;
    border: 1px solid  rgb(5, 143, 197);
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    cursor: pointer;

    
}
.quote-box button img{
    width: 30px;
    margin-right: 10px;

}
.quote-box button:nth-child(2){
    background: transparent;
    color: rgb(5, 143, 197);

}
@media only screen and (min-width: 320px) and (max-width: 480px) {
    /* Styles for mobile phones */
    .quote-box{
      width: 90%;
    }
    .quote-box h2{
    font-family:22px;
}
      .quote-box blockquote{
    font-size: 23px;
 

}
}
