html {
	font-family: 'Quicksand', sans-serif;
	font-size: 25px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Noto Serif', serif;
	color: black;
}

body {
	background-color: cornflowerblue;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 70vh;
}

.wrapper {
	max-width: 1800px;
	padding: 0 20px;
}

h1 {
	color: yellowgreen;
	font-size: 3.5rem;
}

a:hover {
	color: yellowgreen;
}

h2 {
	font-size: 2rem;
}

p {
	color: black;
}

@media screen and (max-width: 767px) {
	h1 {
		font-size: 2.8rem;
	}
	h2 {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 480px) {
	html {
		font-size: 20px;
	}
	h1 {
		font-size: 2.5rem;
	}
	h2 {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 320px) {
	h1 {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.2rem;
	}
}