:root {
	--main-color1: #b6d9ff;
	--main-color2: #0c122a;
}
* {
	box-sizing: border-box;
}
body {
	margin: 0;
	font-size: 125%;
	font-family: georgia, 'palatino';
	color: var(--main-color1);
	text-align: center;
}
h3 {
	text-shadow: 3px 3px 3px var(--main-color2);
}
section .heading {
	text-align: center;
}
#home {
	background: url("../img/sp5ce.gif") no-repeat center center fixed;
	background-size: cover;
	object-fit: cover;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
#logo {
	width: 768px;
	height: 671px;
}
@media all and (max-width: 1024px) {
	#logo {
		width: 500px;
		height: 437px;
	}
	h3 {
		font-size: 100%;
	}
}
@media all and (max-width: 700px) {
	#logo {
		width: 300px;
		height: 262px;
	}
	h3 {
		font-size: 75%;
	}
}
