:root {
  --transition-time: 1s;
  --font-family: 'Finger Paint';
  --bold: 900;
  --normal: 400;
  --color-main: #292929;
  --color-secondary: #ffffff;
  --color-links: #7997a1;
}

html {
  height: 100vh;
  overflow: hidden;
  font-size: 10px;
  font-family: var(--font-family, cursive);
}

body {
  margin: 0;
  color: var(--color-secondary, white);
  font-size: 1.5rem;
  font-weight: var(--normal, normal);
}

a {
  color: var(--color-links, black);
}

h1, h2 {
  margin: 0;
  padding: 0;
  font-weight: var(--bold, bold);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

p {
  width: 100%;
  text-align: center;
}

ul {
  margin: 0;
  padding: 0 0 0 2.5rem;
  max-height: 100%;
}

figure {
  margin: 0;
  max-height: 100%;
}

figcaption {
  text-align: center;
}

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

#main {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide, .slide-inner {
  width: 100%;
  height: 100vh;
  flex-direction: column;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-inner {
  width: 100%;
  box-sizing: border-box;
  overflow: auto;
  padding: 3rem 3rem 3rem 0;
  margin-right: -6rem;
  padding-right: 6rem;
}

.slide {
  transition: bottom var(--transition-time, 1s);
  background: var(--color-main, black);
  overflow: hidden;
  position: absolute;
  z-index: 0;
  bottom: -100vh;
  border-top: 1px solid #6f6f6f;
}

.slide.active {
  bottom: 0;
}

.tribute-inner {
  align-items: flex-start;
}

.heading::after {
  position: absolute;
  content: "";
  background-color: transparent;
  background-image: url("../img/down.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: cue 1s infinite;
}

.heading-inner {
  display: flex;
  justify-content: center;
}

.heading-inner > * {
  text-align: center;
}

.collage-inner {
  flex-direction: row;
}

.collage-inner > * {
  max-width: 450px;
}

@media screen and (min-width: 1024px) {
  .heading-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .heading-inner > * {
    flex: 1 1 50%;
  }
}

@keyframes cue {
  0% {
    bottom: 5px;
  }
  25% {
    bottom: 10px;
  }
  50% {
    bottom: 15px;
  }
  75% {
    bottom: 10px;
  }
  100% {
    bottom: 5px;
  }
}