body {
    min-height: 100vh;
    max-width: 100%;
    color: #4D586E;
    overflow-x: hidden;
}

main {
    padding-top: 15vh;
    padding-bottom: 25vh;
}

main .description, main h1, main blockquote {
    padding: 0 25px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

main h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 3rem;
    position: relative;
    margin-bottom: 100px;
    font-weight: normal;
}

main h1::after {
    content: "";
    background-image: url("title-descoration.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    display: block;
    width: 115%;
    height: 200px;
    object-fit: scale-down;
    position: absolute;
    bottom: -125px;
    left: -15%;
    pointer-events: none;
}

main blockquote {
    text-align: center;
    color: #95C11F;
    font-size: 2rem;
    margin-bottom: 75px;
    max-width: 800px;
}

main p {
    margin-bottom: 15px;
    line-height: 1.3;
}

.signature {
    background: #3d576e;
    color: white;
    padding: 15px;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    margin-top: 50px;
    line-height: 1.5;
    font-size: 0.9em;
    border-radius: 5px;
    transform: translateX(150px);
}

@media screen and (max-width: 600px) {
    .signature {
        transform: none;
    }
}