main h1 {
    font-size: 84px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
    margin-left: min(3vw, 60px);
    margin-right: min(3vw, 60px);
    text-align: center;
    margin-bottom: 30px;
}

main h1 span {
    text-align: left;
    display: block;
    font-size: 16px;
    color: #727272;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.context {
    background: url('/img/about/tree2.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    padding: 50px 0;
    position: relative;
}

.context::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(#fff0 0%, #fff 100%);
    opacity: 1;
}

.context p,
q {
    font-size: 20px;
    font-weight: 500;
}

.text q {
    text-align: center;
    width: 100%;
    display: block;
    font-weight: 600;
    font-size: 24px;
}

.context p {
    text-align: justify;
    line-height: 1.3em;
}

.context .text {
    margin: auto;
    border-radius: 20px;
    width: max(90%, calc(100% - 20px));
    padding: 40px min(5vw, 120px);
    background: linear-gradient(#fff 0%, #fff0 80%);
    max-width: 900px;
}

.end {
    display: flex;
    align-items: end;
    justify-content: start;
    flex-direction: column;
    font-style: italic;
    margin-top: 40px;
}

.end p {
    margin: 0;
    font-weight: 600;
    font-size: 27px;
}

.end span {
    font-weight: 300;
    font-size: 20px;
}

@media only screen and (min-width: 560px) {
    main h1 {
        text-align: left;
    }
}