html {
	font-family: "Atkinson Hyperlegible", "Cochineal", monospace;
	font-size: 12pt; 
	color: #009999;
	background-color: #001a1a;
}

body {
	margin-top: 100px;
	margin-bottom: 100px;
	margin-left: auto;
	margin-right: auto;
	min-width: 120px;
	max-width: 640px;
}

h1 {
	/* margin-top: 5px; */
	font-size: 24pt;
}

h2 {
	margin-top: 48pt;
	font-size: 20pt;
}

h3 {
	margin-top: 36pt;
	font-size: 16pt;
}

a {
	color:#00cc99;
}

a:visited {
	color:#3333cc;
}

p {
	margin-top: 12pt;
}

.buttonbox{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	text-align: center;
	margin: 2px;
	min-width: 640px;
	height: 14pt;
}


.button {
	border: solid 2px #009999;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2px;
	width: 120px;
	height: 18pt;
	color: #009999;
	background-color: #001a1a;
	text-decoration: none;
	padding-top: 3px;
	padding-bottom: 3px;
}


/* When things get tight */
@media all and (max-width: 640px) {

	.buttonbox{
		display: flex;
		flex-wrap: wrap;
		/* justify-content: flex-start; */
		/* align-items: start; */
		justify-content: center;
		/* align-items: center; */
		flex-direction: column;
		text-align: center;
		margin: 2px;
		min-width: 124px;
		min-height: 14pt;
		height: auto;
	}
}


/* For mobile screens (proxy detection through toughscreen pointer) */
@media (any-pointer: coarse) {
	html {
		font-size: 14pt;
	}

	.buttonbox{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		flex-direction: column;
		text-align: center;
		margin: 2px;
		min-width: 124px;
		min-height: 14pt;
		height: auto;
	}

	.button {
		/* align-items: center; */
		margin: 2px;
		width: 240px;
		font-size: 16pt;
		height: 24pt;
		padding-top: 3px;
		padding-bottom: 3px;
	}
}

.button:hover {
	background-color: #009999;
	color: #001a1a;
	/* cursor: auto; */
	cursor: url;
}

a.button:visited {
	color:#3333cc;
}

#button-frontpage-socials,
#button-frontpage-projects {
	color: #001a1a;
	background-color: #004d4d;
	border: solid 2px #004d4d;
}

#button-frontpage-socials:hover,
#button-frontpage-projects:hover {
	color: #001a1a;
	background-color: #009999;
}

#button-frontpage-socials,
#button-frontpage-projects a:visited{
}



.newspost-header {
	margin-bottom: 0pt;

}

.newspost-meta{
	font-style: italic;
	color: #004d4d;
	margin-top: 0pt;
}




