@font-face {
    font-family: fira;
    src: url(/font/FiraSans-Regular.woff2);
}

body {
    font-family: fira;
    font-size: 1.7em;
}

:root {
    --blue: #0055d5;
    --verylightgray: #f7f7f7;
    --lightgreen: #049b30;
}

.header {
    color: var(--blue);
    /* height: 4rem; */
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); */
    /* grid-template-columns: 100px minmax(10px, auto-fill) 50px 20px; */
    grid-template-columns: 110px minmax(10px, auto) 10em 2em;
    /* grid-auto-rows: minmax(50px, auto); */
    grid-template-rows: 50px 2em 1em;
}

.header .logo {
    /* z-index: 1; position: absolute; left:20px; */
    min-height: 132px;
    min-width: 110px;
    grid-column: 1;
    grid-row: 1 / 3;
}

.header .spacer {
    background-color: var(--blue);
    grid-column: 1 / 5;
    grid-row: 1;
}

.header .user {
    grid-column: 3;
    grid-row: 1;
    text-align: right;
    padding-right: 1em;
    align-self: center;
}

.header .menuicon {
    grid-column: 4;
    grid-row: 1;
    font-size: 1.5em;
    font-weight: bold;
    align-self: center;
}

.header .menuicon button {
    background-color: inherit;
    border: 0px;
}

.header .title {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
    font-weight: bold;
    align-self: center;
    justify-self: center;
}

.header .title2 {
    grid-column: 1 / 5;
    grid-row: 3;
    font-weight: bold;
    align-self: center;
    justify-self: center;
}

.footer {
    margin-top: 20px;
    padding-left: 1em;
    padding-right: 1em;

    color: white;
    font-weight: bold;
    font-size: 16px;
    background-color: var(--blue);
}

.footer .footernav {
    display: flex;
    justify-content: center;
}

.footer .disclaimer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.footer ul li {
    padding-top: 10px;
}

.podcastbuttons {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    flex-wrap: wrap;
    padding-bottom: 1em;
}

.podcastbuttons ul {
    list-style: none;
    padding-inline-start: 0;
}

.podcastbuttons a img {
    /* TODO: properly resize the images / sprite */
    height:50px;
    width:150px;
    padding-top: 5px;
}

.episodes .title {
    background-color: var(--blue);
    color: white;
    font-weight: bold;
    padding-left: 3rem;
}

.episodes li {
    list-style-type: none;
    background-color: var(--verylightgray);
    margin-top: 1rem;
    /* fixed to padding-inline-start from template css */
    margin-right: 40px;
}

.episodes h4 {
    font-weight: bold;
}

.episodes img {
    display:inline;
}

a {
    font-weight: bold;
    color: black;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

a:hover,
a:focus {
    color: var(--lightgreen);
}

.footer a {
    color: white;
}

.podcontent {
    padding: 2rem;
}
