body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Avenir Next', Arial, sans-serif;
}

html {
    background-attachment: fixed;
    background-color: #011318;
    background-image: linear-gradient(#011318, #012831);
    padding: env(safe-area-inset);
}

body {
    display: flex;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: top;
    padding: 100px;
}

.content {
    max-width: 600px;
    margin-left: 50px;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 2em;
    margin-bottom: 0;
    font-weight: 500;
    color: #fff;
}

h2 {
    font-size: 1.25em;
    margin-bottom: 0.5em;
    font-weight: 400;
    color: #fff;
}

.gradient-text {
    color: #199FBD;
    background-image: linear-gradient(#34FFCE, #479BE9);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}

.title-header {
    display: flex;
    align-items: center;
}

.logo {
    width: 190px;
    padding-left: 20px;
}

.app-icon {
    width: 50px;
    height: 50px;
    border-radius: 22%;
}

.download-button {
    margin-top: 20px;
    width: 240px;
}

.screenshot {
    max-width: 270px;
}

@media (max-width: 600px) {
    body {
        display: inline;
        align-items: top;
        justify-content: top;   
    }

    .container {
        flex-direction: column;
        align-items: center;
        padding: 40px;
    }

    .screenshot {
        order: 2
    }

    .content {
        margin-top: 0;
        margin-bottom: 20px;
        margin-left: 0px;
        align-items: center;
        max-width: 400px;
    }

    h1 {
        text-align: center;
        font-size: 1.25em;
        margin-top: 30px;
    }

    h2 {
        text-align: center;
        font-size: 1em;
    }
}