/* styles.css */

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html, body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	height: 100%;
}

.page {
	display: flex;
	flex: auto;
	flex-direction: column;
	height: 100vh;
}

.top-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #333;
	color: white;
	padding: 0.5rem 1rem;
	text-align: center;
}

.top-bar h1 {
	margin: 0;
}

.top-bar h1 a {
	color: white;
	text-decoration: none;
	padding-right: 0.2em;
}

.top-bar-button-container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	--background-color: #000;
}
.top-bar-button {
	font-size: 14pt;
	color: white;
	font-weight: bold;
	padding: 0.2em;
	margin: 0.2em;
	text-decoration:none;
	border: 1px solid white;
	border-radius: 3pt;
	transition: background-color 0.2s;
}
.top-bar-button:visited {
	color: white;
}
.top-bar-button:hover {
	text-decoration: underline;
	background: white;
	color: #333;
}

.main-content {
	width: 90%;
	max-width: 40em;
	margin: 0 auto;
	text-align: center;
	padding: 1rem;
}


.main-content h2 {
	font-size: 30pt;
	padding: 0.1rem;
	padding-top: 1.3rem;
}
.main-content h3 {
	font-size: 20pt;
	padding: 0.1rem;
	padding-top: 0.6rem;
	text-align: left;
}

.main-content p {
	text-align: left;
}

.main-content p a {
	color: #1E90FF;
	text-decoration: none;
	transition: color 0.2s, border-bottom 0.2s;
	border-bottom: 1px solid transparent;
}
.main-content p a:hover {
	color: #0D6EFD;
	border-bottom: 1px solid #0D6EFD;
}
.main-content p a:visited {
	color: #1A73E8;
}



.main-content .emphasized {
	background-color: #333;
	color: white;
	margin-top: 4pt;
	margin-bottom: 6pt;
	padding: 5pt;
	padding-left: 10pt;
	font-size: 14pt;
	border-radius: 7pt;
}

/* For some reason this becomes 2 px taller than the non-button ones. */
.main-content .emphasized-is-button {
	display: block;
	background-color: #333;
	color: white;
	margin-top: 4pt;
	margin-bottom: 6pt;
	padding: 5pt;
	padding-left: 10pt;
	font-size: 14pt;
	border-radius: 7pt;
	text-align: left;

	text-decoration: underline;
	transition: color 0.2s, border 0.2s;
	border: 1pt solid transparent;
}
.main-content .emphasized-is-button:visited {
	color: white;
}
.main-content .emphasized-is-button:hover {
	text-decoration: underline;
	background: white;
	color: #333;
	border: 1pt solid #333;
}


.top-bar-button {
	font-size: 14pt;
	color: white;
	font-weight: bold;
	padding: 0.2em;
	margin: 0.2em;
	text-decoration:none;
	border: 1px solid white;
	border-radius: 3pt;
	transition: background-color 0.2s;
}
.top-bar-button:visited {
	color: white;
}
.top-bar-button:hover {
	text-decoration: underline;
	background: white;
	color: #333;
}




.main-content .flex-row {
	display: flex;
	flex-direction: row;
}

.main-content .flex-row div {
	width: 100%;
}

.main-content .supporter-data-emphasized {
	background-color: #333;
	color: white;
	margin-top: 4pt;
	margin-bottom: 6pt;
	padding: 15pt 20pt 15pt 20pt;
	font-size: 28pt;
	border-radius: 14pt;
	text-align: center;
	width: 100%;
}

.main-content .download-button {
	display: block;
	background-color: #333;
	color: white;
	margin-top: 4pt;
	margin-bottom: 6pt;
	padding: 15pt 20pt 15pt 20pt;
	font-size: 28pt;
	border-radius: 14pt;
	text-align: center;
	width: 100%;

	text-decoration: underline;
	transition: color 0.2s, border 0.2s;
	border: 1pt solid transparent;
}
.main-content .download-button:visited {
	color: white;
}
.main-content .download-button:hover {
	text-decoration: underline;
	background: white;
	color: #333;
	border: 1pt solid #333;
}






.footer {
	margin-top: auto;
	background-color: #333;
	color: white;
	padding: 0.5rem 1rem;
	width: 100%;
	height: 50pt;
	flex-shrink: 0;
}


