* {
	margin: 0;
	padding: 0;
}

body {
	color: #dedede;
}

img {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.content {
	position: relative;
	z-index: 2;
	margin: 30px;
}

p.menu {
	margin: 20px 0;
}

p.menu a {
	background-color:rgba(77, 77, 77, 0.5);
	border-radius: 10px;
	padding: 5px 10px;
	color: white;
	text-decoration: none;
	font-size: 20px;
	font-family: "Gill Sans";
}

p.menu a:hover {
	background-color:rgba(77, 77, 77, 0.9);
}

p.menu svg {
	margin-bottom: -3px;
	width: 16px;
	fill: white;
}

footer {
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

footer svg {
	margin-bottom: -3px;
	width: 14px;
}

footer span {
	font-size: 20px;
	margin: 0 10px;
}

@media (max-width: 360px) {
	footer {
		display: block;
		position: relative;
		text-align: center;
	}

	footer span {
		display: block;
	}
}