@import url('https://fonts.googleapis.com/css?family=Muli:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');

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

body {
	font-family: 'Muli', sans-serif;
	background: #1d1d1d;
	background: linear-gradient(to bottom, #1d1d1d 0%, #1d1d1d 70%, #1a1a1a 100%);
	color: #a0a0a0;
	font-size: 1.5rem
}

* {
	box-sizing: border-box
}

.home-content {
	width: 100%;
	max-width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column
}

.home-body {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	text-align: center
}

.home-body>div>img {
	border-radius: 50%;
	border: 0.25em solid #d43809;
	max-width: 50%
}

.hidden-checkbox {
	position:absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 0;
	height: 0;
	overflow: hidden;
	appearance: none;
}

header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 1em 1.5em
}

header .menu .menu-button {
	display: none;
	user-select: none
}

@media screen and (max-width: 40rem) {
	header {
		padding: 0 0 1em 0;
		flex-direction: column;
		text-align: center
	}

	header .external-links {
		margin-top: 1em
	}

	header .menu .menu-button {
		display: block
	}

	header .menu > #menu-checkbox ~ a {
		display: none
	}

	header .menu> #menu-checkbox:checked ~ a {
		display: block
	}
}

header .external-links a svg {
	width: 1.5rem;
	height: 1.5rem;
}

header .external-links a+a {
	margin-left: 10px
}

header .menu {
	font-weight: 100;
	font-size: 0.8em
}

header .menu>a {
	display: block;
	padding: 0.1em 0
}

header .menu .menu-button {
	padding: 0.5em;
	background-color: #86280c;
	color: #d1d1d1;
	margin-bottom: 0.25em;
	cursor: pointer
}

footer {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	padding: 1em 1.5em;
	font-size: 0.9em;
	font-weight: 100;
	letter-spacing: 1.2px
}

a {
	color: #d1d1d1;
	text-decoration: none;
	transition: color 0.2s
}

a:hover,
a:active,
a:focus {
	color: #d43809
}