
html { box-sizing: border-box; }

*, ::after, ::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

#flavorOverlay {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}

#flavorLightbox { display: none; }

#flavorLightbox > img {
  max-width: 90%;
  max-height: 90%;
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index:9999
}

#flavorLightboxClose {
  font-size: 32px;
  cursor: pointer;
  color: #fff;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 666;
}

.thumbnails {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  z-index: 600;
  position: relative;
  cursor: pointer;
  position: absolute;
  bottom: 50px;
  width: 90%;
}

.thumbnails img {
  height: 50px;
  margin: 1px;
  transition: .3s;
}

.thumbnails img:hover { border: 2px solid #fff; }

body {
  font-family: Courier;
  padding: 70px;
}

h1 {
  font-family: 'Zilla Slab Highlight', cursive;
  text-align: center;
  text-transform: uppercase;
  font-size: 60px;
  margin-bottom: 70px;
}

h2 { margin: 30px 0 15px; }

.gallery, .gallery2 {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}

.gallery__item img { max-height: 100%; }

.gallery__item {
  width: 100px;
  height: 100px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  cursor: pointer;
  margin: 3px;
}
