body, html {
  font-family: "Special Gothic Expanded One", sans-serif;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overscroll-behavior-y: none;
  background: #000;
}
#header {
  height: auto;
  width: 100%;
  padding: 20px 0px;
  background: #000;
  color: #fff;
  position: fixed;
  top: 0;
  z-index: 2;
}
h1 {
  font-size: 24px;
}
#header h1 {
  margin: 0px 0px 0px 10px;
  font-size: 24px;
}
#header ul {
  list-style-type: none;
  float: right;
  margin: 0px 10px 0px 0px;
}
#header li {
  display: inline-block;
  padding: 0px 5px 0px 5px;
}
#header li a {
  color: yellow;
}
#footer h2 {
  margin: 0px auto 0px 10px;
  float: left;
  font-size: 14px;
}
.image-container {
  text-align: center;
}
.year-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  color: #fff;
  text-shadow: 5px 6px black;
}
#gallery-container {
  position: relative;
  margin: 140px 0px 120px 0px;
  width: 100%;
  z-index: 1;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
  width: 100%;
  flex-direction: column;
}
.gallery img {
  max-width: 100%;
  height: auto;
}
#footer {
  background: #000;
  padding: 10px 0px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  width: 100%;
  z-index: 1;
  position: fixed;
  bottom: 0;
}
#footer a {
  color: #fff;
  font-size: 14px;
  margin-right: 10px;
  float: right;
}
#background {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 0;
}
#background img {
  width: 100%;
  height: 100%;
}
.timestamp {
  width: 100%;
  text-align: center;
  color: #fff;
  background: #000;
  padding: 18px 0px 18px 0px;
  margin: -7px 0px 25px 0px;
  font-size: 12px;
}
.windy-text {
  white-space: nowrap;
  position: relative;
  display: inline-block;
  margin: 25px 0px 0px 10px;
}
.windy-text span {
  display: inline-block;
  transform-origin: bottom center;
  font-size: 24px;
  padding: 0px 5px 0px 5px;
}
@keyframes sway {
  from {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(5deg);
  }
}
@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.windy-text span:nth-child(1) {
  animation: sway 2s infinite alternate, floaty 1s infinite ease-in-out;
}
.windy-text span:nth-child(2) {
  animation: sway 2.5s infinite alternate, floaty 1.2s infinite ease-in-out;
}
.windy-text span:nth-child(3) {
  animation: sway 1.5s infinite alternate, floaty 1.3s infinite ease-in-out;
}
.windy-text span:nth-child(4) {
  animation: sway 1s infinite alternate, floaty 1.1s infinite ease-in-out;
}
@media (max-width: 1000px) {
  #gallery-container {
    margin: 120px 0px 20px 0px;
  }
  .gallery {
    width: 100%;
  }
}
@media (max-width: 790px) {
  #header {
    text-align: center;
  }
  .windy-text {
    display: block;
    text-align: center;
    margin: 10px auto 10px 0px;
  }
  #header ul {
    display: block;
    float: none;
    text-align: center;
    margin: 5px auto 5px auto;
    padding: 0px;
  }
  #footer h2 {
    font-size: 12px;
  }
  #footer a {
    font-size: 9px;
  }
}