body {
	background-color: #FFF;
	color: black;
	margin: 0;
	font-family: 'Nunito', sans-serif;
}

.container a {
	color: #0042EB;
	text-decoration: none;
}

.container a:hover {
	background: rgba(0, 66, 235, 0.1);
}

.navbar {
	background: #216273;
	color: #D1DDE0;
	position: relative;
	padding: 0px 20px;
	height: 62px;
}

.footer {
	background: #216273;
	color: #fff;
	padding: 10px 0;
	font-size: 0.8em;
}

@media screen and (prefers-color-scheme: dark) {
	body {
		background-color: #001C21;
		color: #D1DDE0;
	}
  
	.container a {
		color: #8AABFF;
	}

	.container a:hover {
		background: rgba(156, 184, 255, 0.1);
	}
	
	.navbar {
		background: #001D21;
	}
	
	.footer {
		background: #000B0D;
		color: #D1DDE0;
	}
}

.container {
	max-width: 900px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.navbar-container {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
/*	align-items: center;*/
}

.navbar-container img {
	content: url('icon-web-light-small.png');
	margin: 10px 8px 10px 0;
	width: 42px;
	height: 42px;
	display: block;
	aspect-ratio: 1;
}

@supports (content: url('icon-web-light-small.webp')) {
    .navbar-container img {
        content: url('icon-web-light-small.webp');
    }
}

.navbar-container a {
	color: #fff;
	text-decoration: none;
	font-size: 1.5em;
	font-weight: 500;
	margin: auto 0;
	display: block;
}

@media screen and (prefers-color-scheme: dark) {
	.navbar-container img {
		content: url('icon-web-dark-small.png');
	}
	
	@supports (content: url('icon-web-dark-small.webp')) {
		.navbar-container img {
			content: url('icon-web-dark-small.webp');
	    }
	}
	
	.navbar-container a {
		color: #99BAC2;
	}
}

.hero {
	background: linear-gradient(to bottom, #FFF, #E4E7ED);
	padding: 20px 0;
	text-align: center;
}

.hero-image {
  display: inline-block;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  height: auto;
}

.hero-app-name {
	font-size: 3.4em;
	font-weight: 700;
	margin-top: -16px;
}

.hero-app-tagline {
	font-size: 2em;
/*	font-weight: 700;*/
}

.hero-app-availability {
	font-size: 1.3em;
	margin: 10px auto 0 auto;
	padding: 4px;
	display: inline-block;
}

.hero-app-store {
	margin: 40px auto 20px auto;
	user-select: none;  /* Prevents text selection */
	-webkit-user-select: none;
	display: block;
}

.hero-app-store img {
	width: 200px;
}

.header {
	background: linear-gradient(to bottom, #FFF, #E4E7ED);
	padding: 20px 0;
	text-align: center;
}

.no-hover:hover {
    background: transparent !important;
}

.app-intro {
	font-size: 1.4em;
}

ul.app-intro {
	font-size: 1.2em;
	list-style: none;  /* Removes bullets */
	padding-left: 0;
	margin-left: 0;
}

ul.app-intro li {
	margin-bottom: 8px;
}

@media (prefers-color-scheme: dark) {
	.hero {
		background: linear-gradient(to bottom, #00798F, #001C21);
	}
	
	.hero-image {
		content: url('icon-web-dark.png');
	}
	
	@supports (content: url('icon-web-dark.webp')) {
		.hero-image {
			content: url('icon-web-dark.webp');
		}
	}
	
	.header {
		background: linear-gradient(to bottom, #002E36, #001C21);
	}
}

.section {
	padding-top: 18px;
	padding-bottom: 18px;
}

.section.dark {
	background: #F5F7FA;
}

@media screen and (prefers-color-scheme: dark) {
	.section.dark {
		background: #00252B;
	}
}

.section.container.h2 {
	font-size: 1.5em;
	font-weight: bold;
	padding-top: 10px;
}

.protocol {
	width: 100%;
	border-collapse: collapse;
}

.protocol th, .protocol td {
	border: 1px solid black;
	padding: 8px;
	text-align: left;
}

.protocol th {
	background-color: #C0E6F0;
	font-weight: bold;
}
		
.protocol tbody tr:nth-child(even) {
	background-color: #EBF3F5; 
}

pre {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 10px;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 255, 0.2);
	overflow-x: auto;
	white-space: pre-wrap;
	word-wrap: break-word;
	font-family: monospace;
}

.app-brick {
	display: flex;
	background: #F5F7FA;
	box-shadow: 0 0 20px rgba(126, 144, 166, 0.5);
	padding: 20px;
	border-radius: 20px;
	font-size: 1.3em;
	margin: 0 auto 20px auto;
}

.app-brick .icon {
	padding-right: 16px;
	white-space: nowrap;
	font-size: 2.7em;
}

.highlight {
	background-color: rgba(255, 221, 0, 0.4);
}

@media (prefers-color-scheme: dark) {
	.protocol th, .protocol td {
		border: 1px solid #A6B0B3;
	}
	
	.protocol th {
		background-color: #006273;
	}
	
	.protocol tbody tr:nth-child(even) {
		background-color: #00343D;
	}
	
	pre {
		background-color: #002E36;
		border: 1px solid #004854;
	}
	
	.app-brick {
		background: #001C21;
		box-shadow: 0 0 20px rgba(0, 20, 23, 0.5);
	}
	
	.highlight {
		color: #E0C126;
		background: none !important;
	}
}

@media (min-width: 450px) {
	.app-brick {
		width: 60%;
	}	
}

@media (max-width: 450px) {
	.app-brick {
		flex-direction: column;
	}
	
	.app-brick .icon {
		white-space: nowrap;
		font-size: 1.8em;
		text-align: center;
	}
}