/* Style for mobile first */
.header {
    background-color: #1e1e1e;
    width: 100%;
    height: 68px;
    display: flex;
    flex-direction: row;
}
#siteLogo {
    width: 100%;
    background-color: #000000;
    color: #808080;
}
#tagLine {
    background-color: #1e1e1e;
    color: #808080;
    display: none;
}
#siteIcon {
    width: 75px;
    background-color: #a00000;
}
.navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #300000;
    overflow: hidden;
    height: 48px;
    display: flex;
    flex-direction: row;
}
a.navbarBtn:link, a.navbarBtn:visited {
    background-color: #1e0000;
    color: #a00000;
    font-family: Helvetica, sans-serif;
    font-size: 28px;
    width: 150px;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}
a.navbarBtn:hover, a.navbarBtn:active {
    background-color: #a00000;
    color: #000000;
}
#navbarSpacer {
    width: 100%;
    display: inline-block;
}
.body {
    background-color: #1e1e1e;
    min-height: 1080px;
    display: flex;
    flex-direction: column;
}
.leftSidebar, .rightSidebar {
    display: none;
}
.centerColumn {
    width: 100%;
}
.footer {
    background-color: #300000;
    height: 120px;
    display: flex;
    flex-direction: row;
}

/* Style for desktop */
@media only screen and (min-width: 1080px){
    .header {
        background-color: #1e1e1e;
        display: flex;
        flex-direction: row;
    }
    #siteLogo {
        width: 470px;
        min-width: 470px;
        background-color: #000000;
        color: #808080;
    }
    #tagLine {
        width: 100%;
        text-align: right;
        display: block;
    }
    #siteIcon {
        width: 75px;
        min-width: 75px;
        background-color: #a00000;
    }
    .navbar {
        background-color: #300000;
        display: flex;
        flex-direction: row;
    }
    .body {
        flex-direction: row;
    }
    .leftSidebar, .rightSidebar {
        width: 450px;
        min-width: 450px;
        display: inline-block;
    }
    .centerColumn {
        width: 100%;
    }
    .footer {
        background-color: #300000;
        display: flex;
        flex-direction: row;
    }
}

/* Global styles for text */
h1 {
  color: #a00000;
  text-align: center;
  font-family: Garamond, serif;
  font-size: 40px
}

p {
  color: #a01f1f;
  font-family: Helvetica, sans-serif;
  font-size: 20px;
}