@import url('https://fonts.googleapis.com/css?family=Lato:300,900&display=swap');
* {
	background-color: #ffffff;
	margin: 0;
	padding: 0;
}
body {
	margin: 10%;
	min-height: 100%;
	color: black;
	font-family: 'Lato', sans-serif;
}
h1 {
	font-weight: 900;
	font-size: 5rem;
	margin-bottom: 2rem;
}
p {
	font-weight: 300;
	font-size: 2rem;
	margin-bottom: 2rem;
}
a {
	color: #111;
	border-bottom: 2px solid #111;
	text-decoration: none;
}
a:hover {
	border-bottom: 2px solid red;
	color: #111;
}