/* Style for links inside of top level headers */
h1 a {
	text-decoration: none;
	color: var(--bg-three);
	text-shadow: 
		4px 3px 0px black, 
		-1px -1px white;
	transition: text-shadow 0.3s ease-in;
}

/* Hover style for links inside of top level headers */
h1 a:hover {
    color: var(--nav-button-text-color);
	text-shadow: 
		2px 2px 8px var(--bg-one), 
		-2px -2px 8px var(--bg-two), 
		-2px 2px 8px var(--bg-three), 
		2px -2px 8px var(--bg-four);
}