:root {
    color-scheme: light dark;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    color: #171717;
    min-width: min-content;
}

.container {
    min-width: 320px;
    max-width: 1000px;
    padding-right: 15px;
    padding-left: 15px;
    margin: auto;
    /* margin-right: auto; */
    /* margin-left: auto; */
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear-all {
    clear: both;
}

.text-center {
    text-align: center;
}

.app-icon {
    width: 200px;
    height: 200px;
    margin-right: 50px;
}

.app-store {
    padding-top: 8px;
    width: 130px;
}

/* Header */
header {
    height: 50px;
    padding: 0;
    padding-bottom: 10px;
    margin: 0;
    letter-spacing: 1;
}

.navwrapper {
    max-width: 1000px;
    position: relative;
}

.logo {
    float: left;
    /* position: absolute;
    left: 0px;
    right: auto; */
    font-size: 1.5em;
    padding: 15px 15px;
}

nav {
    float: right;
    /* position: absolute;
    right: 0px;
    left: auto; */
    /* text-transform: uppercase; */
    /* padding-top: 20px; */
    line-height: 10px;
}

nav>ul {
    list-style: none;
}

nav>ul>li {
    position: relative;
    display: block;
    float: left;
}

nav>ul>li>a {
    position: relative;
    display: block;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.clear {
    clear: both;
    padding-top: 30px;
}

h1.title {
    font-weight: 200;
    font-size: 38px;
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.1;
}

.subtitle {
    font-weight: 200;
    font-size: 26px;
    margin: 0;
}

h2 {
    font-size: 2.5em;
    margin: 0;
    line-height: 1.1;
}

a {
    color: #4719ff;
    text-decoration: none;
}

section {
    padding: 30px 0px;
}

.platforms>li {
    display: inline;
}

.app-name {
    margin: 0;
    padding: 0;
}

.app-subtitle {
    margin: 0;
    padding: 0;
}

.app {
    display: flex;
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: center;
    border-bottom: 1px solid #000000;
}

.app-summary {
    width: 375px;
    display: block;
    /* padding-top: 30px; */
}

.app-summary>p {
    font-size: 14px;
}

.platforms {
    float: right;
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    padding-right: -50px;
}

.platform {
    height: 25px;
    filter: invert(100%);
    float: left;
    padding-left: 5px;
}

/* Phone */
@media all and (max-width:599px) {
    .app {
        align-items: center;
        flex-direction: column;
    }

    .app-screenshot {
        width: 300px;
    }

    .app-summary {
        width: 300px;
    }

    .app-icon {
        margin: auto;
        margin-bottom: 20px;
    }

    .container {
        padding-left: 0;
        padding-right: 0;
    }

    nav>ul>li {
        position: relative;
        display: block;
        float: none;
        text-align: right;
    }
}

@media all and (max-width:899px) {
    .app {
        align-items: center;
        flex-direction: column;
    }

    .app-screenshot {
        width: 350px;
    }

    .app-summary {
        width: 350px;
    }

    .container {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Other */
@media all and (min-width:600px) {
    .app {
        flex-direction: row;
    }
}

.app:last-child {
    border-bottom: 0px;
}


.apps {
    padding-top: 30px;
    min-width: 320px;
}

footer > .container {
    padding-bottom: 50px;
}

hr {
    display: block;
}

* {
    box-sizing: border-box;
}


.tag {
    border-radius: 5px;
    padding: 2 8px;
    height: 1.75em;
    font-size: 0.875rem;
}

.feature-tag {
    color: #9E11FF;
    border: 1px solid #9E11FF;
}

.improvement-tag {
    color: #ffae00;
    border: 1px solid #ffae00;
}

.fix-tag {
    color: #00ad0e;
    border: 1px solid #00ad0e;
}

.card > ul {
    list-style: none;
    margin-left: -1.5rem;
}

.card > ul > li {
    padding: 2 0;
}

.release-notes > h2 {
    margin-bottom: 20px;
}

.card {
    padding: 1.5rem;
    border-radius: 5px;
    border: 1px solid #eeeeee;
    margin-bottom: 0.85rem;
}

.version {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.25em;
}

.feature-count {
    color: #9E11FF;
    background-color: #f3e2ff;
}

.improvement-count {
    color: #ffae00;
    background-color: #fff1d2;
}

.fix-count {
    color: #00ad0e;
    background-color: #e4ffe4;
}

@media (prefers-color-scheme: dark) {
	body {
		background: #111517;
        color: white;
	}

    p {
	    color: white;
    }

    h3 {
        color: white;
    }

    a {
        color: #4f4ffe;
    }

    .platform {
        filter: invert(0%);
    }

    .app {
        border-bottom: 1px solid #FFFFFF;
    }

    .feature-count {
        background-color: #9E11FF;
        color: #f3e2ff;
    }

    .improvement-count {
        background-color: #ffae00;
        color: #ffffff;
    }

    .fix-count {
        background-color: #00ad0e;
        color: #e4ffe4;
    }
}