body {
    font-family: Roboto, sans-serif;
    margin: 0 auto;
    background-color: #d0d0d0;
}

.fadeable {
    opacity: 1;
    /* transition: opacity 2s; */
}

.fadeable.fade {
    opacity: 0;
    transition: opacity 2s;
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0rem 0rem 2rem;
    background: transparent;
    text-align: left;
}

header .title {
    font-family: 'Mr Dafoe', cursive;
    font-size: 3.5rem;
    padding-bottom: .5rem;
}

#controls.fixed {
    font-family: 'Merriweather', serif;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 33%;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: left;
    border-radius: 0 .5rem .5rem 0;
}

#controls div {
    font-size: .75rem;
    padding: .5rem 0 .5rem 0;
    word-spacing: .25rem;
}

#controls code {
    border: 1px solid;
    border-radius: 2px;
    padding: 0 .25rem;
}

#covers {
    text-align: center;
}
.cover img {
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
    /* img should fit vertically and/or horizontally within viewport */
    height:100vh;
    max-width:100%;
    object-fit: contain;
}

.description.fixed {
    font-family: 'Merriweather', serif;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 33%;
    padding: 1rem 1rem 1rem .5rem;
    text-align: right;
    border-radius: .5rem 0 0 .5rem;
}
