* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	background-color: #333;
	height: 100vh;
}
.container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.download {
	display: block;
	padding: 30px 50px;
	margin-top: 15px;
	background-color: tomato;
	border-radius: 10px;
	text-decoration: none;
	font-size: 50px;
	font-family: sans-serif;
	font-weight: 700;
	color: black;
	transition: 0.3s;
}
.download:hover {
	color: royalblue;
	box-shadow: 5px 5px 30px #000;
}

.notes {
	display: block;
	padding: 20px 30px;
	margin-top: 50px;
	background-color: rgb(187, 31, 159);
	border-radius: 10px;
	text-decoration: none;
	font-size: 28px;
	font-family: sans-serif;
	font-weight: 700;
	color: black;
}
.high-five {
	margin-top: 200px;
	text-align: center;
	text-decoration: none;
	font-family: sans-serif;
	font-size: 20px;
	color: #fff;
	transition: color 0.3s;
}

.high-five:hover {
	color: royalblue;
}

