body {
    padding-top: 80px;
    font-family: "Roboto", Arial, sans-serif;
    min-height: 100vh;
    background: #a5d9b5;
    background: linear-gradient(90deg, rgba(165, 217, 181, 1) 0%, rgba(211, 230, 217, 1) 54%, rgba(193, 230, 229, 1) 98%);
    box-sizing: border-box;
}

.quote-box{
    background: #fff;
    width: 700px;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px 0px rgba(0, 0, 0, 0.7);
}

.quote-box .center {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
} 

.quote-box h2{
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
}

.quote-box button{
    background: rgb(23, 124, 229);
    color: #fff;
    border-radius: 25px;
    border: 1px solid blue;
    width: 150px;
    height: 50px;
    margin: 5px;
    cursor: pointer;
}