text-banner {
    display: flex;
    flex-direction: column;
    background: #FAFAFA;
    max-width: 800px;
    padding-left: calc((100% - 800px) / 2);
    padding-right: calc((100% - 800px) / 2);
    padding-top: 88px;
    padding-bottom: 82px;
}

text-banner h2 {
    color: #702A2A;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.64px;
    margin-top: 0;
    margin-bottom: 32px;
}

text-banner p {
    color: #6E4A4A;
    text-align: center;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.24px;
    margin-top: 0;
}

text-banner>p>a {
    color: inherit;
}

text-banner>a {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #702A2A;
    padding: 16px;
    color: #702A2A;
    text-align: center;
    font-size: 24px;
    line-height: 32px;
    text-decoration: none;
}

text-banner>a:last-child {
    margin-top: 48px;
}

text-banner>a:first-child {
    margin-bottom: 48px;
}

text-banner>a:hover {
    background-color: #702A2A;
    color: #FAFAFA;
}

@media screen and (max-width: 1000px) {
    text-banner {
        width: 664px;
        padding-left: calc((100% - 664px) / 2);
        padding-right: calc((100% - 664px) / 2);
    }

    text-banner h2 {
        font-size: 28px;
        font-weight: 700;
        letter-spacing: 0.56px;
    }

    text-banner p {
        font-size: 20px;
        line-height: 32px;
        letter-spacing: 0.2px;
    }

    text-banner>a {
        font-size: 24px;
        line-height: 32px;
    }
}

@media screen and (max-width: 800px) {
    text-banner {
        width: 500px;
        padding-left: calc((100% - 500px) / 2);
        padding-right: calc((100% - 500px) / 2);
    }
}

@media screen and (max-width: 720px) {
    text-banner {
        width: calc(100% - 32px);
        padding: 24px 16px;
    }

    text-banner h2 {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.4px;
        margin-bottom: 16px;
    }

    text-banner p {
        font-size: 16px;
        line-height: 32px;
        letter-spacing: 0.16px;
        margin-bottom: 24px;
    }

    text-banner>a {
        font-size: 16px;
        line-height: 32px;
        width: 100%;
        box-sizing: border-box;
    }
}