html, body, a {
    height: 98vh;
    width: 98vw;
    background-color: #333333;
    color: #aFF;
    overflow: hidden;
}

#browse {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 90vh;
}

#previous, #on-deck, #in-the-hole {
    height:1px;
    width: 1px;
    visibility: hidden;
}

#current {
    position: relative;
    width: 95vw;
}
#current > .zoom-on-hover {
    position: relative;
    height: auto;
    width: auto;
    display: inline-block;
    overflow: visible;
}

#current > .zoom-on-hover > .normal {
    width: auto;
    height: 92vh;
    display: inline-block;
    max-width: 92vw;
}

#current > img {
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

#selector {
    text-align: center;
}

#back-arrow, #forward-arrow {
    display: inline-block;
    position: fixed;
    top: 20%;
    font-size: 200%;
    font-weight: bold;
    cursor: pointer;
    text-shadow: 0 0 8px #BBB;
    z-index: 5;
}

#forward-arrow {
    right: 0;
    padding-right: 2em;
    padding-top: 10em;
    padding-bottom: 10em;
    padding-left: 10em;
}

#back-arrow {
    left: 0;
    padding-left:2em;
    padding-top: 10em;
    padding-bottom: 10em;
    padding-right: 10em;
}

#main {
    text-align: center;
}

.browse-row > span {
    margin-bottom: 1em;
}

.browse-row {
    width: 100%;
    overflow: hidden;
    height: 300px;
    position: relative;
    margin-top: 3em;
    scrollbar-width: none;
}

.browse-track-scroller::-webkit-scrollbar {
    display: none;
}

.browse-track-scroller {
    overflow-x: scroll;
    scrollbar-width: none;
    text-align: left;
}

.row-scroll-left, .row-scroll-right {
    position: absolute;
    top: 0.5em;
    padding: 7% 1em;
    font-size: 200%;
    font-weight: bold;
    cursor: pointer;
    text-shadow: 0 0 8px #BBB;
    background-color: rgba(70,70,70, 0.3);
    user-select: none;
}

.row-scroll-left {
    position: absolute;
    left: 0;
    cursor: pointer;
}

.row-scroll-right {
    position: absolute;
    right: 0;
    cursor: pointer;
}

.browse-track {
    padding: 0 5em;
    height: 290px;
    display: inline-flex;
}

.comic-obj {
    float: left;
    margin-right: 3em;
    height: 250px;
    font-size: 70%;
    width: 140px;
    cursor: pointer;
    margin-top: 0.5em;
    text-align: center;
}

.comic-obj:hover {
    box-shadow: 0 0 20px #BBB;
}

.comic-obj > img {
    height: 170px;
    width: auto;
    display: block;
    margin: 0 auto;
}

#browse-button {
    position: fixed;
    top: 0;
    left: 4em;
    padding: 2em;
    cursor: pointer;
    font-size: 150%;
    z-index: 5;
}

#searchmode-button {
    position: fixed;
    top: 0;
    right: 4em;
    padding: 2em;
    cursor: pointer;
    font-size: 150%;
    z-index: 5;
}

#search-results {
    width: 90vw;
    margin: 5em auto;
}

#search-results:after {
    content: "";
    display: table;
    clear: both;
  }

  .auth > a {
      padding: 3em;
  }

  .row-title {
    font-weight: 200%;
    font-size: 200%;
  }

  #search-box {
      height: 3em;
      width: 20em;
  }

  .zoom-on-hover {
    position: relative;
    overflow: hidden;
  }
  .zoom-on-hover .normal {
    width: 100%;
  }
  .zoom-on-hover .zoom {
    position: absolute;
    opacity: 0;
    transform-origin: top left;
  }
  .zoom-on-hover.zoomed .zoom {
    opacity: 1;
  }
  .zoom-on-hover.zoomed .normal {
    opacity: 0;
  }

  #zoomToggle {
      display: none;
      position: fixed;
      bottom: 10px;
      right: 20vw;
      z-index: 10;
  }

  @media (min-width:961px) and (orientation: landscape) {
      #zoomToggle {
          display:inline;
      }
  }