* {
	box-sizing: border-box;
}
body {
	background: linear-gradient(to bottom, #003, #000);
	color: #eee;
	font-family: "Michroma", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 2px;
	overflow: hidden;
	text-align: center;
}
main {
	height: 100vh;
	padding-top: 20px;
	width: 100%;
}
section {
	background-color: rgba(80, 80, 80, 0.5);
	border-radius: 15px;
	cursor: pointer;
	margin: 25px auto;
	padding: 25px;
	width: 800px;
}
section:hover {
	background-color: rgba(80, 80, 80, 0.75);
}
a {
	color: white;
	text-decoration: none;
}