html {
	font-family: 'Calibri', sans-serif;
	font-size: 20px;
	background-color: antiquewhite;
}

.container {
	width: 1000px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Calibri', sans-serif;
}


@media (max-width: 1035px) {
	.container {
		padding: 0 5%;
		width: 90%;
	}
}

#up {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 50px;
	height: 50px;
	font-size: 40px;
	background: rgba(129, 129, 114, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.5s linear;
}

#up.show {
	opacity: 1;
}