:root {
    --hbr-bg: #FF4F00;
    --hbr-bg-trans: #C0C0C000;
    --blue: #3eb0ef;
    --green: #a4d037;
    --purple: #ad26b4;
    --yellow: #fecd35;
    --red: #f05230;
    --darkgrey: #15171a;
    --midgrey: #738a94;
    --lightgrey: #c5d2d9;
    --whitegrey: #e5eff5;
    --pink: #fa3a57;
    --brown: #a3821a;
    --darkmode:#1a1c20
  }

body {
    padding: 0;
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
    font-size: 1.6rem;
    line-height: 1.6em;
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    color: white;
}

header.page, footer {
    text-align:center;
    padding: 0 5vw;
    background-color: var(--hbr-bg);
}

div.header-inner {
    margin: 0 auto;
    max-width:1040px;
    width:100%;
    font-size:100%;
}

header.page nav {
    z-index: 100;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    white-space: no-wrap;
    overflow: hidden;
    height: 64px;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: .2px;
}

ul.menu {
    list-style: none;
    display: flex;
    font-size:100%;
}

ul.menu li {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1.6em;
}

ul.menu li a {
    font-size: initial;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    padding: 12px;
    color: white;
    opacity: .8;
    transition: opacity .35s ease-in-out;
    cursor: auto;
}
div.header-content {
    font-style: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    padding: 5vw 3vw 6vw;
}

.header-content > h1 {
    margin: 0;
}
.header-content > h2 {
    margin: 0;
    padding: 5px 0;
    line-height: 1.4em;
    opacity: .8;
}

main {
    margin: auto;
    max-width: 720px;
    color: darkgray;
}

section.main {
    margin: 0.5em;
    padding: 0.25em 0.5em;
    display: flex;
    flex-direction: column;
}

/* -- Blog feed styling -- */
section#blog {
    flex-wrap: wrap;
    margin: 0 -20px;
    padding: 50px 0 0;
    background: #fff;
}

section#blog article {
    flex: 1 1 301px;
    flex-direction: column;
    overflow: hidden;
    margin: 0 0 40px;
    padding: 0 20px 40px;
    min-height: 220px;
    border-bottom: 1px solid #eaeff1;
    background-size: cover;
}

section#blog article img {
    object-fit: cover;
    width:100%;
    height:200px;
}

div.post {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

div.post a {
    text-decoration: none;
    position: relative;
    display: block;
    color: var(--darkgrey);
}

div.tag {
    margin: 0 0 .2em;
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: .2px;
    text-transform: uppercase;
}

div.post h2 {
    margin: 0 0 .4em;
    font-size: 1.5rem;
    line-height: 1.15em;
    transition: color .2s ease-in-out;
}

div.post section {
    max-width: 56em;
    color: var(--midgrey);
    font-family: Georgia, serif;
    font-size: 1rem;
}

label {
    display: block;
    padding: 0.5em 0;
}
input {
    font-size: 1.5em;
    padding: 0 .2em;
}
input:read-only {
    background-color: silver;
}

table {
    width:100%;
    background: gray;
    margin: .5em 0;
    font-size: 100%;
}

tr {
    color: black;
}
th {
    color:white;
    font-weight: normal;
    font-size: 80%;
}
td {
    padding: .5em;
    text-align: center;
}
tr:nth-child(2) {
    background: rgb(235, 81, 37)
}
tr:nth-child(3) {
    background: rgb(115, 194, 88)
}
tr:nth-child(4) {
    background: rgb(99, 190, 231)
}
tr:nth-child(5) {
    background: rgb(246, 210, 56)
}