@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-color: #88baba;
}

.quote-box{
    background-color: #fff;
    width: 650px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% ,-50%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
     box-shadow: 0px 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: 75px;
    height: 3px;
    position: absolute;
    bottom:-10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(23, 124, 229);
}
.quote-box blockquote{
    font-size: 26px;
    min-height: 110px;
}
.quote-box blockquote::before, .quote-box blockquote::after{
    content: '"';
}
.quote-box span{
    /* display: flex; */
    /* justify-content:end; */
    display: block;
    float: right;
    font-size: 20px;
    margin-top: 10px;
    position: relative;
}
.quote-box span::before, .quote-box span::after{
    content: '';
    width: 20px;
    height: 2px;
    position: absolute;
    background-color: rgb(23, 125, 229);
    top: 50%;
    left: -30px;
}
.quote-box div{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}
.quote-box button{
    background:rgb(23, 124, 229);
    color: #fff;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 45px;
    border-radius: 25px;
    border: 1px solid rgb(23, 124, 229);
    margin: 5px;
    cursor: pointer;
}
.quote-box button img{
    width: 25px;
    margin-right: 10px;
}
.quote-box button:nth-child(2){
    background-color: transparent;
    color: #333;
}
@media screen and (max-width:678px) {
    .quote-box{
        /* background-color: aquamarine; */
        max-width:350px;
    }
}