.info {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    height: 100%;
    text-align: center;

    h1 {
        font-size: 1.5em;
        margin: 1.25em 0 0.5em 0;
        padding: 0;
    }
    
    img {
        width: 128px;
        height: auto;
        border-radius: 32px;
    }
    
    .subtitle {
        font-size: 1.2em;
        color: rgba(0, 0, 0, 0.5);
        padding: 0;
        margin: 0;
    }

    button {
        font-size: 1.05em;
        border: none;
        background-color: black;
        color: white;
        outline: none;
        border-radius: 0.5em;
        min-height: 44px;
        margin: 2em 0 0.75em 0;

        a {
            color: white;
            text-decoration: none;
            padding: 0.75em 1.25em;
        }
    }

    span {
        font-size: 0.9em;
        color: rgba(0, 0, 0, 0.5);
    }
}

a {
    text-decoration: none;
    color: black;
}

button {
    font-family: inherit;
}

.free-indicator {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.65);
}

.navi-anchor {
    color: black;
}

.navi-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5em 1em;
}

.navi-logo {
    display: flex;
    flex-direction: row;
    align-items: center;

    img {
        width: 40px;
        height: auto;
        border-radius: 0.5em;
    }

    span {
        font-size: 1em;
        font-weight: bold;
        margin-left: 0.5em;
    }
}

.navi-menu {
    a {
        margin-left: 2em;
    }
}

.article {
    display: flex;
    flex-direction: column;
    max-width: 70%;
    margin: auto;
    font-size: 1.1em;
    line-height: 175%;
    margin-bottom: 4em;

    h1 {
        margin-bottom: 4em;
        text-align: center;
    }

    h3 {
        width: 100%;
        text-align: center;
        margin-top: 3em;
        margin-bottom: 2em;
    }

    .screenshots {
        display: flex;
        flex-direction: row;

        img {
            width: 50%;
            height: auto;
        }
    }
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 1em;
    font-size: 0.8em;
    color: rgba(0, 0, 0, 0.5);

    a {
        color: rgba(0, 0, 0, 0.5);
    }
}

* {
    box-sizing: border-box;
}

body {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 0 1em 0;
}

@media (max-width: 1024px) {
    .info {
        max-width: 75%;
        margin: auto;
    }

    .article {
        max-width: 90%;
    }

    .navi-install-anchor {
        display: none;
    }
}