*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

html,
body {
    background-color: #388FCE;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: "Lato", sans-serif;
}

p, ul, li {
    margin: 0.5em 0;
}

ul {
    padding-left: 1.5em;
}

.wrapper {
    margin: 0 auto;
    padding: 1em;
    max-width: 800px;
    width: 95%;
}

.home,
footer {
    font: 18px / 1.5 sans-serif;

    h1,
    h2,
    p {
        width: 100%;
        text-align: center;
        color: #fff;
        margin-bottom: 15px;
    }
}

footer {
    margin-top: 25px;
    max-width: 100%;
    width: 100%;
    background-color: #388FCE;
}

.app-push {
    padding: 20px 15px 35px;

    h2,
    p {
        font: 18px / 1.5 sans-serif;
        color: #fff;
    }

    h2 {
        font-weight: normal;
    }

    .button-container {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;

        div{
            display: flex;
            flex-direction: column;
        }
    }

    .button {
        width: 150px;
        height: 50px;
        display: inline-block;
        padding: 0;
        border: none;
        border-radius: 5px;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        overflow: hidden;
    }

    .button.apple {
        background: url('/images/app-store-button.svg') no-repeat center center;
        background-size: contain;
    }

    .button.android {
        background: url('/images/google-play-button.svg') no-repeat center center;
        background-size: contain;
    }

    .button:hover {
        opacity: 0.8;
    }

    @media(max-width: 600px) {
        .button-container {
            flex-direction: column;
            align-items: center;
        }

        .button {
            width: 100%;
            max-width: 300px;
        }
    }
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;

    a {
        color: #fff;
    }
}

.legal {
    background-color: white;
    max-width: 800px;
    margin: 20px auto;
    padding: min(25px, 5vw);
    border-radius: 5px;

    h1,
    h2,
    h3 {
        color: #388FCE;
        margin: 20px 0 15px;
    }

    a {
        color: #388FCE;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }

    table,
    th,
    td {
        border: 1px solid #ddd;
    }

    th,
    td {
        padding: 12px;
        text-align: left;
    }

    th {
        background-color: #f2f2f2;
    }

    @media(max-width: 600px) {
        table {
            display: block;
            overflow-x: auto;
        }
    }
}