body {
	padding: 20px 15px 20px 15px;
	font-family: sans-serif, -apple-system, BlinkMacSystemFont;
	font-size: 18px;
	line-height: 26px;
	color: #000;
	background: #fff;
	hyphens: manual;
}

.super-container {
	max-width: 650px;
	position: relative;
	margin: 0 auto;
}

h1 {
	font-family: sans-serif, -apple-system-headline, BlinkMacSystemFont;
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
	margin: 0 0 20px 0;
}
h1.center {
	text-align: center;
}

h2 {
	font-family: sans-serif, -apple-system-headline, BlinkMacSystemFont;
	font-size: 22px;
	font-weight: 700;
	line-height: 31px;
	margin: 0 0 20px 0;
}
h2.center {
	text-align: center;
}

h3 {
	font-family: sans-serif, -apple-system-headline, BlinkMacSystemFont;
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
	margin: 0 0 20px 0;
}
h3.center {
	text-align: center;
}

.list-item-title {
	font-size: 18px;
	line-height: 24px;
}
.list-item-title a {
    display: inline-flex;
}

header {
    font-family: sans-serif, -apple-system-headline, BlinkMacSystemFont;
	font-size: 22px;
	font-weight: 700;
	line-height: 31px;
	margin: 0 0 20px 0;
}
header .separator {
	margin: 0;
}

.logo-icon {
    width: 60px;
    height: 60px;
	margin: 0 0 10px 0;
}

.logo-icon-label {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}
.logo-icon-label .icon {
    width: 30px;
    height: 30px;
	margin: 0 15px 0 0;
}

footer {
	margin: 25px 0 40px 0;
}

p {
	margin: 0 0 20px 0;
}
p.center {
	text-align: center;
}

a {
    color: #000;
    text-decoration-color: #888;
    text-underline-offset: 3px;
	transition: text-decoration-color 0.5s ease-out;
}
a:hover {
    text-decoration-color: #ccc;
	transition: text-decoration-color 0s;
}
a.button {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 7px;
	background-color: #ffe45d;
	text-decoration: none;
	font-size: 20px;
}
a.app-store-badge {
	display: inline-block;
	margin: 0;
}
a.app-store-badge img {
	width: 200px;
	margin: 0;
}

img {
	box-sizing: content-box;
	outline: none;
	margin: 0 0 20px 0;
}
img.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
img.screenshot {
	display: block;
	border-radius: 5px;
    width: 375px;
    max-width: 90%;
}
img.mini-screenshot {
	display: inline-block;
	border-radius: 7px;
	height: 550px;
}

.scrollable-image-wrapper {
	position: relative;
}
.scrollable-image-container {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
	margin-right: -10px;
	padding-right: 20px;
    gap: 20px;
}
.scrollable-image-container::after {
	content: '';
	position: absolute;
	top: 0;
	right: -10px;
	width: 50px;
	height: 100%;
	background: linear-gradient(to left, #fff, transparent);
	z-index: 2;
}
.scrollable-image-container img {
    flex: 0 0 auto;
}

ul {
	margin: 0 0 20px 0;
    list-style-type: "−  ";
    padding-left: 21px;
}
ul li {
    margin-bottom: 20px;
}

.horizontal-list * {
    margin-right: 15px;
}
.horizontal-list .selected {
    font-weight: 600;
}

.separator {
	display: block;
	width: 100%;
	height: 1.5px;
	background-color: #000;
	opacity: 0.1;
}
header .separator {
    margin-top: 10px;
}
footer .separator {
    margin-bottom: 20px;    
}

.no-margin {
	margin: 0;
}

.inline {
	display: inline;
}

/*
@media (prefers-color-scheme: light) {
    body {
        background-color: white;
        color: black;
    }
    a {
        color: black;
        text-decoration-color: #888;
    }
    a:hover {
        text-decoration-color: #ccc;
    }
    .separator {
        background-color: black;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #252525;
        color: white;
    }
    a {
        color: white;
        text-decoration-color: #666;
    }
    a:hover {
        text-decoration-color: #aaa;
    }
    .separator {
        background-color: white;
    }
}
*/
