/* Hestia Issues: 9 */
:root {
    --primary: #606060;
    --secondary: #663399;
    --background: #333333;
    --font-family: "Roboto";
    --header-drop-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --footer-drop-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: var(--secondary);
}
html, body {
    height: 100%;
    font-family: var(--font-family), serif;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--background);
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 4em;
    border-bottom: 1px solid var(--background);
    box-shadow: var(--header-drop-shadow);
}
.logo {
    grid-area: logo;
    height: 4em;
    width: auto;
}
.navbar {
    grid-area: navbar;
}
.sign {
    grid-area: sign;
}
.navbar-contents {
    display: flex;
    list-style: none;
}
.navbar-contents li {
    margin: 0 25px;
}
.navbar-contents li:first-child {
    margin-left: 0;
}
.copyright {

}