body {
	font-family: Arial, sans-serif;
	color: slategray;
	background-color: beige;
}

.back-to-home {
	display: inline-block;
	padding: 0.5rem 1rem;
	margin: 1rem;
	color: orange;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s ease;
}

.back-to-home:hover {
	color: #d97706;
}

h1 {
	font-size: 300%;
}

h1,
h2 {
	color: orange;
	text-transform: uppercase;
	font-weight: 100;
}

h2 i {
	transition: font-size 0.2s ease-in-out;
}

h2:hover i {
	font-size: 150%;
}

img {
	width: 100%;
}

footer {
	margin-top: 70px;
	background-color: orange;
	color: white;
}

footer p {
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}

#container {
	width: 60%;
	margin: auto;
}

@media screen and (max-width: 768px) {
	#container {
		width: 90%;
	}

	h1 {
		font-size: 200%;
	}
}
