html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.quote {
    margin: 30px 30px;
    padding: 10px;
    background: rgb(221, 184, 250);
    border: 2px solid rgba(160, 49, 252, 1);
    color: rgb(235, 221, 247);
}

.text {
    font-style: italic;
    font-size: 23px;
    margin: 0;
    text-align: center;
}

.header-img img {
    border-radius: 50%;
    height: 280px;
    width: 280px;
}

@media(max-width: 768px) {
    .header-img img {
        height: 200px;
        width: 200px;
    }
}

h2 {
    font-style: italic;
    text-decoration: underline;
}

.block {
    background: rgb(221, 184, 250);
    border: 2px solid rgba(160, 49, 252, 1);
    height: 250px;
    margin: 40px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media(max-width: 768px) {
    .block {
        height: 370px;
        margin-bottom: 50px;
    }
}

.block span {
    font-size: 16px;
    font-weight: bold;
    width: 200px;
    height: 70px;
    text-align: center;
    background-color: #f7dba0;
    border: 2px solid #f9ab00;
    padding: 7px;
    position: absolute;
    top: 5px;
}

.center-row {
    line-height: 48px;
}

.block ul {
    margin-top: 45px;
    padding: 0 30px;
}

.block ul li {
    text-align: left;
    list-style-type: disc;
    list-style-position: outside;
}