/* styles.css */

/* Import Open Sans from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body {
	background-color: black;
	color: white;
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	text-align: center;
}

img {
	max-width: 100%;
	height: auto;
}

div {
	width: 100%;
}

p {
	margin: 8px 0;
}

p.headline,
p.headline_first{
	color: white;
	font-weight: bold;
	font-size: 1.3em;
}

p.headline{
	margin-top: 1em;
}

div.footer{
	font-size: 0.65em;
	margin-top: 2em;
}

a {
	color: #8abcff;
	text-decoration: none;
}

a:visited {
	color: #8abcff;
}

a:hover {
	text-decoration: underline;
}
