html {
	background-image: linear-gradient(to right, #041e42 , #bf0d3e);
	color: #fff;
	font-family: sans-serif;
	box-sizing: border-box;
}

header label {
	margin-left: 1rem;
}

div {
	background-color: #fff;
	border: 1px solid gold;
	box-shadow: #777;
	color: #333;
	padding: 2rem;
}

.site-title {
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-size: 2em;
}

.main-content {
	max-width: 1000px;
	margin: 1em auto;
}

.menu {
	text-align: right;
	position: relative;
}

.check_toggle {
	display: none;
}

#site-menu {
	display: none;
}

#burger_toggle:checked ~ #site-menu {
	display: block;
	position: absolute;
	top: 1.25rem;
	right: 0;
	border: 1px solid black;
	padding: .5rem;
	box-shadow: 0 0 7px dimgray;
	text-align: left;
}

#site-menu > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#site-menu a {
	display: inline-block;
	line-height: 1.5rem;
	width: 100%;
	color: #041e42;
	font-weight: 550;
	text-decoration: none;
}
#site-menu a:hover {
	background-color: gold;
}

#site-menu a:visited {
	color: #041e42;
}
