@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/merriweather-v30-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/fonts/merriweather-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/merriweather-v30-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/merriweather-v30-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/fonts/merriweather-v30-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/merriweather-v30-latin-regular.svg#Merriweather') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/merriweather-v30-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/fonts/merriweather-v30-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/merriweather-v30-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/merriweather-v30-latin-700.woff') format('woff'), /* Modern Browsers */
       url('/fonts/merriweather-v30-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/merriweather-v30-latin-700.svg#Merriweather') format('svg'); /* Legacy iOS */
}

@keyframes slideInFromLeft {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}
html, body {
    margin: 0;
    height: 100%;
    font-family: 'Merriweather', serif;
    background-color: #7f7f7f;
}
nav {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
}
a {
    text-decoration: none;
    color: #efefef;
}
nav > a, nav > form {
    margin: 0px;
    padding: var(--padd) 3em;
    flex: 1;
    filter: brightness(90%);
    display: flex;
    animation: 0.6s ease-out var(--delay) 1 slideInFromLeft;
}
div.quotes {
    margin: 0px;
    padding: 0em 0em;
    width: 100%;
    flex: 1;
    flex-direction: row;
    display: flex;
    animation: 0.6s ease-out var(--delay) 1 slideInFromLeft;
}
div.quotes > p {
    margin: 0px;
    padding: 1em 1em;
}
span.quote {
}
span.source {
    color: #efefef;
    font-style: italic;
}
a.implink {
    flex: 0 1 auto;
}
.linktext {
    font-size: var(--fsize);
    text-shadow: 0px 2px 2px rgba(0,0,0,0.3);
    color: white;
    text-overflow: ellipsis;
    overflow: hidden;
}
p.linktext {
    font-size: calc(0.8*var(--fsize));
    flex: 1;
}
.imptext {
    font-size: var(--fsmall);
    width: 100%;
    text-align: right;
}
a:hover, a:focus, a:active {
    filter: brightness(100%);
}
.blue { background-color: #4383c5; }
.brown { background-color: #b1ab87; }
.dark { background-color: #3e5155; }
.green { background-color: #536a27; }
.lightgreen { background-color: #9fb44d; }
.red { background-color: #7a2b2b; }
.orange { background-color: #e56153; }
.gray { background-color: #7f7f7f; }
