* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

h2 {
	font-family: 'Baloo Paaji 2', cursive;
}

p, h1, h3 {
	font-family: 'Montserrat', sans-serif;
}

h1 {
	text-decoration: underline;
}

a {
	color: #1d63ea;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

main {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
}

nav {
	display: flex;
	align-items: center;
}

.logo {
	width: 100px;
	height: 100px;
	border-radius: 20px;
	margin-right: 20px;
}

.last-updated {
	margin: 50px 0;
}

.content {
	text-align: center;
}

.content h1 {
	margin-bottom: 40px;
}

.content h3 {
	margin-bottom: 10px;
}