body {
    min-height: 100vh;
    color: #4a596d;
    background: #f0e2c8;
    overflow-x: hidden;
}

main {
    padding-top: 15vh;
    padding-bottom: 25vh;
    padding-left: 25px;
    padding-right: 25px;

    width: 100%;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

section {

    --background-size: 100px;

    background: linear-gradient(to right, #dfc99d, #dfc99d00 var(--background-size));
    margin-bottom: 50px;
    border-radius: 15px;
    padding: 20px;
    width: 75%;
}

section:first-child {
    width: 100%;
    font-weight: bold;
    background: linear-gradient(to right, #dfc99d, #dfc99d00 var(--background-size)),
                linear-gradient(to left, #dfc99d, #dfc99d00 var(--background-size));
                text-align: center;
}

section:last-child {
    background: none;
    border-left: solid 2px #dfc99d;
    border-radius: 0;
}

p:not(:last-child) {
    margin-bottom: 1em;
}