@font-face {
    font-family: "Vollkorn";
    src: url("/static/fonts/Vollkorn-Regular.woff2"), format("woff2"),
        url("/static/fonts/Vollkorn-Regular.woff"), format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Vollkorn";
    src: url("/static/fonts/Vollkorn-Bold.woff2"), format("woff2"),
        url("/static/fonts/Vollkorn-Bold.woff"), format("woff");
    font-weight: bold;
}

@font-face {
    font-family: "Vollkorn";
    src: url("/static/fonts/Vollkorn-Italic.woff2"), format("woff2"),
        url("/static/fonts/Vollkorn-Italic.woff"), format("woff");
    font-style: italic;
}

@font-face {
    font-family: "EagleLake";
    src: url("/static/fonts/EagleLake-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "YsabeauOffice";
    src: url("/static/fonts/YsabeauOffice-VariableFont_wght.ttf");
    font-weight: 1 1000;
    font-style: normal;
}

@font-face {
    font-family: "YsabeauOffice";
    src: url("/static/fonts/YsabeauOffice-Italic-VariableFont_wght.ttf");
    font-weight: 1 1000;
    font-style: italic;
}

body {
	background-color: #EBE6D7;
	margin: 0;
	font-family: "Vollkorn", "Times New Roman";
	max-height: 100vh;
}

header {
    background: #426C4C;
    padding: 10px;
    height: 25vh;
    text-align: center;
}

header img {
        height: 50%;
    }

nav {
        background-color: #EBE6D7;
        width: 100%;
    }

footer {
    width: 100%;
    text-align: center;
    background-color: #EBE6D7;
    color: #426C4C;
    position: fixed;
    right: 0;
    bottom: 5px;
}

h1 {
	font-family: 'EagleLake', 'Goudy Old Style', 'Luminari', 'Copperplate';
	color: #EBE6D7;
	text-align: center;
	font-size: 2.5em;
}

h1 a {
    color: #EBE6D7;
    text-decoration: none;
}

nav a {
    color: #426C4C;
    font-family: 'EagleLake', 'Goudy Old Style', 'Luminari', 'Copperplate';
    text-decoration: none;
    text-align: center;
    font-size: 2em;
    display: block;
    margin-top: 1em;
}

nav a:hover {
    text-decoration: underline;
}

@media only screen
    and (min-width: 600px)
    {

    body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        grid-template-areas: "hero navigation";
    }

    header {
        grid-area: hero;
        min-height: 100vh;
    }

    main {
        margin: 25px;
        grid-area: navigation;
    }

    footer {
        width: 50%;
    }

    h1 {
        font-size: 4em;
    }

    nav a {
        font-size: 3em;
    }
    }