:root {
	--headerColor: #E07A02;
	--footerColor: #034068;
	--highlightColor: #03426B;
	--neutralColor: #363636;
}

body {
	font-family: 'Covered By Your Grace', cursive;
	font-size: 18px;
    font-weight: 100;
	color: white;
	text-decoration: none;
	margin: 0;
	padding: 0;
}

.site-footer {
	background-color: var(--footerColor);
	color: white;
    padding-top: 40px;
    width: 100%;
	display: flex;
    flex-direction: column;
    justify-content: center;
	align-items: center;
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 100%);
    margin-top: auto; /* Push footer to the bottom */
}

.footer-content {
    text-align: center;
}
@media screen and (orientation: portrait) {
	.footer-content {
		font-size: 24pt;
	}
	.footer-content img {
        height: 132px;
	}
}

footer .site-nav {
	font-family: 'Covered By Your Grace', cursive;
	font-size: 18px;
    font-weight: 100;
	color: white;
	text-decoration: none;
	display: flex;
    justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0;
	margin: 0;
}
@media screen and (orientation: portrait) {
	footer .site-nav {
        font-size: 36pt;
	}
}

footer .site-nav ul {
	list-style: none;
	display: flex;
}

footer .site-nav li {
	padding: 10px;
}

footer .site-nav a {
    color: white;
    text-decoration: none;
}

.active {
    text-decoration: underline;
    font-weight: bold;
}