header {
    background: var(--title-background-color) !important;
}
header a {
    color: var(--title-color) !important;
}
.open_tab_parent {
    background: var(--title-color) !important;
}
.open_tab_parent a {
    color: var(--title-background-color) !important;
}
section {
    padding-top: .5em;
}
#themeswitcher {
    position: absolute;
    top: 0;
    right: 0;
    margin: 1em;
}
.nav_padding {
    padding: 0.5em;
}
.outer-flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.flex-container > div {
    margin: .5em;
}
#spinnerContainer {
    display: none;
}
#spinner {
    width: 120px;
    height: 120px;
    z-index: 1;
    border: 16px solid GREY;
    border-radius: 50%;
    border-top: 16px solid rgb(229, 255, 229);
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.settingsRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media only screen and (max-width: 625px) {
    .outer-flex-container {
      display: flex;
      flex-direction: column;
    }
}
