main {
    background: rgb(250, 243, 223);
    color: rgb(33, 27, 13);
    padding: 2rem 4rem;
    /* max-width: 900px; */
    margin: 0;
    display: grid;
    .wrapper{
        max-width: 900px;
        justify-self: center;
    }

    h2 {
        text-align: center;
        font-size: max(22px, 1.8rem);
        margin-bottom: 2rem;
        color: rgb(33, 27, 13);
    }

    h3 {
        font-size: max(18px, 1.3rem);
        color: rgb(61, 133, 198);
        margin-top: 2rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid rgb(61, 133, 198);
        padding-bottom: 0.3rem;
    }

    p {
        line-height: 1.7;
        font-size: max(15px, 1rem);
        margin-bottom: 0.8rem;
    }

    a {
        color: rgb(61, 133, 198);
        text-decoration: none;
    }
    a:hover {
        text-decoration: underline;
    }
}