* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: helvetica, sans-serif;
  color: white;
  font-weight: normal;
  font-size: 20px;
  line-height: 1.3em;
  list-style-type: none;
}

html,
body {
  background: #060606;
}

.panels {
  overflow: scroll;
  height: 100vh;
  width: 100%;
  scroll-snap-type: y mandatory;
}

.panel {
  box-shadow: 40px red;
  scroll-snap-align: start;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  background: #1d1e22;
}

.clip {
  position: sticky;
  height: 0;
  width: 100%;
  top: 0;
  margin-bottom: 0;
}

h2 {
  position: absolute;
  top: 0;
  margin: 0;
  padding: calc(100vh - 64px) 50px 0;
  z-index: 3;
  left: 0;
}
.tint {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  width: 100vw;
  height: 100vh;
  z-index: 2;
  pointer-events: none;
}

img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}
.video_clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
iframe {
  z-index: 1;
  border: 0;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

a {
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: all ease 0.25s;
}

.controls {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  font-size: 30px;
  font-family: courier, mono;
  display: flex;
  flex-wrap: wrap;
  a.disabled {
    opacity: 0.5;
    pointer-events: none;
  }

  a {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 36px;
    text-align: center;
    background: rgba(0, 0, 0, 0);
    &:first-child {
      margin-right: -8px;
    }
  }
}

span.note {
  position: fixed;
  bottom: 40px;
  right: calc(20px + 120px);
  z-index: 2;
}

.see-more {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 1px solid;
  position: fixed;
  cursor: pointer;
  right: 20px;
  top: 10px;
  z-index: 100;
  text-decoration: none;
  color: wheat;
  background: red;
}
