body {
    margin: 100px
    height:100%;
  font-family: 'Abel', sans-serif;
}

#wordmark {
  font-size: 9vmin;
}
#navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: white;
  margin-bottom:11px;
}

.visible {
  opacity: 1.0;
}

.invisible {
  opacity: 0.0;
}

.navbutton{
  width: 50px;
  height: auto;
}


h1 {
  font-size:3vmin;
}

#controls {
  width: 320px;
}
.control-button {
  width: 60px;
  text-align: center;
}

.slideshowplaying {
  animation: playingpulse 5s infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}


@keyframes playingpulse {
  to {transform: scale(1.1);filter: blur(1px);}
  from {transform: scale(1.0);filter: blur(0px);}
}

#loader {
  display: none;
  opacity: 0%;
}

#focus-image-container {
  flex:3;
}

.focus-image{
    margin-top: 5px;
    width: auto;
    min-width: 420px;
    max-width: 95%;
    transition: opacity 300ms;
}
#focus-image-caption {
  display: none;
}

#thumb-grid {
  flex:2;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  min-width: 330px;
  max-width: 1100px;
  height: 100%;
}

.thumbnail {
  width: 100px;
  height: 100px;
  margin: 5px;
}

.current-thumbnail {
  filter: blur(2px);
  transition: 1s;
}


#gallery-container {
  display:flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
}
