@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Lato', sans-serif;
    --dark: #111111;
    --light: #eeeeee;
    --accent: #596ecf;
}

body {
    background-color: var(--dark);
    color: var(--light);
}

.flex-grow {
    flex-grow: 1;
}

.emphasis {
    color: var(--accent)!important;
    font-weight: bolder;
}

a {
    text-decoration: none;
    color: var(--light)!important;

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

#header {
    background-color: var(--dark);
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 10;
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--light);

    /*
    box-shadow: 0px 1px 6px -1px rgba(0,0,0,0.87);
    -webkit-box-shadow: 0px 1px 6px -1px rgba(0,0,0,0.87);
    -moz-box-shadow: 0px 1px 6px -1px rgba(0,0,0,0.87);
    */
}

#header #site-title {
    cursor: pointer;
}

#header #site-title img {
    height: 3rem;
    margin-left: 1rem;
}

#header #header-content {
    position: relative;
    display: flex;
    flex-direction: row;
    max-width: 72rem;
    margin: auto;
}

#header #header-content #links-container {
    display: flex;
    flex-direction: row;
    position: relative;
    vertical-align: middle;
    margin-right: 1rem;
}

#header #header-content #links-container .header-link {
    margin: auto 20px;
    color: var(--light);
    font-weight: bold;
    font-size: 1rem;
}


#body {
    max-width: 72rem;
    margin: auto;
}

