@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: #bbc6fa;
}

.container {
    background: #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 rgba(0, 0, 0, 0.2)
}

.container h2 {
    font-size: 32px;
    margin-bottom: 35px;
    position: relative;
}

.container h2::after {
    content: '';
    width: 75px;
    height: 3px;
    border-radius: 3px;
    background: rgb(23, 124, 229);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.container blockquote {
    font-size: 26px;
    min-height: 110px;
}

.container blockquote::after,
.container blockquote::before {
    content: '"';
}

.container span {
    display: block;
    float: right;
    margin-top: 10px;
    position: relative;
}

.container span::before {
    content: '';
    width: 20px;
    height: 2px;
    background: rgb(23, 124, 229);
    position: absolute;
    top: 50%;
    left: -30px
}

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

.container button {
    background: rgb(23, 124, 229);
    color: #fff;
    border-radius: 25px;
    border: 1px solid rgb(23, 124, 229);
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    cursor: pointer;
}

.container button img {
    width: 30px;
    margin-right: 10px;
}

.container button:nth-child(2) {
    background: #fff;
    color: #333;
}