body {
    min-height: 100vh;
    margin: 0;
    font-family: "SF Pro Text", system-ui, -apple-system, BlinkMacSystemFont, Helvetica Neue, Calibri, Helvetica;
    color: #f0f3f6;
    background: linear-gradient(180deg, #047101 0%, #01BF4A 50px, #f0f3f6 51px, #f0f3f6 100%) no-repeat;
    display: flex;
    flex-direction: column;
}

body.main {
    background: linear-gradient(180deg, #047101 0%, #01BF4A 450px, #f0f3f6 451px, #f0f3f6 100%) no-repeat;
}

body.top {
    background: linear-gradient(180deg, #047101 0%, #01BF4A 100%) no-repeat;
}

.main-container {
    flex-grow: 1;
}

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

@font-face {
    font-family: "C64 Pro Local";
    src: url(/fonts/C64_Pro-STYLE.woff2) format("woff2");
    font-display: swap;
}

.appstore {
    width: 238px;
    height: 80px;
}

h1 {
    font: normal 24pt/32px "C64 Pro Local",verdana,helvetica,sans-serif;
    -webkit-font-smoothing: none;
    text-shadow: 1px 1px 2px black;
}

.logo {
    font: normal 24pt/32px "C64 Pro Local",verdana,helvetica,sans-serif;
    -webkit-font-smoothing: none;
    text-shadow: 1px 1px 2px black;
}

.toplist {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 50px 0;
    font-size: 1.2em;
}

.toplist li {
    padding: 0.3em 0;
}

/* header */

@media screen and (max-width: 700px) {
    .content {
        padding: 0 1em;
    }

    .logo-small {
        display: block;
    }

    .logo-big {
        display: none;
    }
}

@media screen and (min-width: 700px) {
    .logo-small {
        display: none;
    }

    .logo-big {
        display: block;
    }
}

header .logo {
    font-size: 1em;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    white-space: nowrap;
    display: flex;
    gap: 2em;
}

nav ul li {
    display: inline-flex;
}

/* hero */

.screenshot {
    max-width: 80%;
    /* box-shadow: 0 0 30px 10px rgb(0 0 0 / 50%);
    border-radius: 10px; */
}

.screenshot-container {
    margin: 4em 0;
}

/* content */

.content {
    padding: 0 40px;
}

.center {
    text-align: center;
}

@media screen and (max-width: 700px) {
    .content {
        padding: 0 1em;
    }
}

.main-content {
    max-width: 80%;
    margin: 50px auto;
    color: #262626;
    background-color: #f0f3f6;
}

.main-content a {
    color: #262626;
    text-decoration: underline;
}

ul.list {
    line-height: 1.6em;
}

.doctable {
    border: 1px solid #999;
    border-collapse: collapse;
}

.doctable th, .doctable td {
    padding: 0.5em;
}


.doctable tbody tr:nth-child(odd) {
    background-color: #dddddd;
}

.doctable .right {
    text-align: right;
}

/* footer */

footer {
    font-size: 0.8em;
    margin-top: 50px;
    padding-top: 40px;
    padding-bottom: 80px;
    background-color: #262626;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

footer ul {
    list-style: none;
    line-height: 2em;
    margin: 0 5em 0 0;
    padding: 0;
}

.footer-links {
    display: flex;
    justify-content: space-between;
}

.footer-copyright {
    color: #aaa;
    text-align: right;
}

.legal a {
    color: #aaa;
}

.footercolumnheader {
    font-weight: bold;
}

.vertspace {
    margin: 2em 0;
}

/* button */

.swiftbutton {
    border: 1px solid #999;
    padding: 2px 6px;
    border-radius: 6px;
    background-color: #ddd;
    box-shadow: 1px 1px 1px 0px rgb(0 0 0 / 50%),
                1px 1px 1px 0px rgb(255 255 255 / 90%) inset;
    margin: 0 1px 0 0;
}

.swiftbutton:hover {
    margin: 0 0 0 1px;
    box-shadow: 1px 1px 1px 0px rgb(255 255 255 / 90%) inset;
}

/* top */

.topappicon {
    width: 256px;
    height: 256px;
}