.app-legal {
    background: var(--gray-50);
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    & .main-content {
        max-width: 770px;
        margin: 0 auto;
        padding-inline: 16px;
    }

    h1,
    h3 {
        text-transform: uppercase;
        font-weight: 600;
    }

    & p {
        font-size: 14px;
        margin-block: 4px 12px;
    }

    & ul {
        padding-left: 32px;
    }

    & li {
        font-size: 14px;
        margin-block: 4px;
    }

    & li:last-of-type {
        margin-bottom: 12px;
    }

    & .main-content .container {
        background-color: #fff;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    @media (width < 992px) {
        & .main-content .container {
            padding: 16px 28px;
        }

        & h1 {
            font-size: 16px;
            font-weight: 600;
            margin: 24px 0 16px 26px;
        }

        & h3 {
            font-size: 15px;
            margin-top: 16px;
        }
    }

    @media (width > 992px) {
        & .main-content .container {
            padding: 16px 32px;
        }

        & h1 {
            font-size: 18px;
            font-weight: 600;
            margin: 24px 0 16px 30px;
        }

        & h3 {
            font-size: 15px;
            margin-top: 12px;
        }
    }
}


/* Header */

.app-header {
    background-color: hsla(0, 0%, 100%, .8);
}

.app-header .container {
    border-radius: 12px;
    padding: 8px 12px;
    width: 100%;
}

.app-header a {
    color: var(--green-700);
    font-size: 16px;
}

.app-header .logo span {
    color: var(--dark-700);
    font-weight: 600;
}

@media (width < 992px) {
    .app-header .container {
        max-width: 90vw;
    }

    .app-header img {
        max-width: 30px;
    }

    .app-header .logo span {
        font-size: 16px;
    }
}

@media (width > 992px) {
    .app-header .container {
        max-width: 992px;
    }

    .app-header img {
        max-width: 40px;
    }

    .app-header .logo span {
        font-size: 20px;
    }
}


/* Footer */

footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-block: 16px;
}

footer a {
    font-size: 14px;
    color: #10a37f;
    text-decoration: none;
    line-height: 1.5;
    cursor: pointer;
    padding: 4px;
    width: fit-content
}

footer a:hover {
    background-color: hsla(160, 100%, 37%, 0.2);
    border-radius: 3px;
}