/* reset rule */
* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

:root, html {
    font-size: 62.5%;
}

body {
    background-color: rgb(250, 250, 236);
    min-height: 100vh;
}

#container {
    background-color: #272635;
    width: 60%; min-width: 275px; height: 100vh;
    margin: 0 auto;
}

header {
    position: fixed; left: 50%; top: 10px; transform: translateX(-50%);
    width: 75%;
}

h1 {
    text-align: center; font-size: 4rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase; font-style: bold; text-shadow: 4px 4px black;
    color: #B1E5F2;
}

h2 {
    text-align: center; font-size: 3rem;
    font-family: 'Oswald', serif;
    font-style: italic; text-shadow: 2px 2px black;
    color: #A6A6A8;
}

a {
    color: #A6A6A8;
    text-decoration: none; text-shadow: 2px 2px black;
    font-family: 'Cardo', serif;
}

ul {
    list-style-type: none;
}

/* Header Nav Styles */
header {
    position: fixed; left: 50%; top: 10px; transform: translateX(-50%);
    width: 75%;
}
header nav {
    position: absolute; bottom: -500px; left: 50%; transform: translateX(-50%);
    width: 80%; min-width: 600px;
}

header nav > ul {
    margin: 10px;
    display: flex;
}

header nav > ul > li {
    margin: 10px;
    flex: 1 0 auto;
    height: 80px;
}

header nav a {
    margin: 10px;
    display: block; width: 100%; height: 100%
}

header .submenu li {
    height: 40px;
    margin: 4px 0px;
}