html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.super-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

main {
    flex: 1; /* This makes the main content grow and take up any available space */
}

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

.super-container {
	padding: 0 25px 0 25px;
	max-width: 650px;
	margin: 0 auto -60px auto;
}

header {
	margin: 20px 0 20px 0;
}
header .separator {
    margin-top: 10px;
}

footer {
	font-size: 15px;
	line-height: 25px;
	margin: 0px 0 25px 0;
}
footer .separator {
    margin-bottom: 12px;    
}

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

.logo-icon-label {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}
.logo-icon-label .icon {
    width: 28px;
    height: 28px;
	margin: 0 12px 0 0;
}
.logo-icon-label .label {
	display: block;
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
}

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;
}

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

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

select {
	display: inline-block;
	padding: 0;
	font-size: inherit;
	line-height: inherit;
    background: none;
	color: #000;
	border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

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: 25px;
    width: 375px;
    max-width: 90%;
}
img.mini-screenshot {
	display: inline-block;
	border-radius: 30px;
	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;
	white-space: nowrap;
}
.horizontal-list .selected {
    font-weight: 700;
}

.separator {
	display: block;
	width: 100%;
	height: 1.5px;
	background-color: #000;
	opacity: 0.1;
}

.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;
    }
}
*/
