*,
*::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;    
}

.wrapper.home,
footer {
    margin: 0 auto;
    padding: 1em;
    max-width: 800px;
    width: 95%;
    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;
        }
    }
}