@import url('https://fonts.googleapis.com/css?family=Palanquin:200,400&subset=latin-ext');

body, html {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  height: auto;
  min-height: 100%;
  
  font-family: 'Palanquin', sans-serif; 
  font-weight: 200;
  font-size: 14pt;
}

p {
  margin: 0;
}

#background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1000;
  min-width: 100vw;
  min-height: 100vh;
  background: repeating-linear-gradient(45deg,black 1px, rgba(0,0,0,0) 3px, rgba(0,0,0,0) 100px);
}
#background-2 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1000;
  min-width: 100vw;
  min-height: 100vh;
  background: repeating-linear-gradient(-30deg,black 1px, rgba(0,0,0,0) 3px, rgba(0,0,0,0) 50px);
}
#container {
  padding: 20px;
}

#header {
  position: fixed;
  top: 0;  
  z-index: -900;
  width: 100%;
  font-size: calc(100vw / 3.2);
  text-align: center;
  line-height: calc(100vw / 4);
  margin-bottom: 3rem;
}

#header img {
  width: 100%;
  height: 100%;
}

#content {
  margin-top: calc(100vw / 4);
  overflow: hidden;
}

.video-item {
  background: rgba(255,255,255,.9);
  background: linear-gradient(2deg, rgba(255,255,255,0),rgba(255,255,255,1) 9%, rgba(255,255,255,1) 95%, rgba(255,255,255,0) 100%);
  padding: 2rem 0;
  transform: skew(3deg, 1deg);
}

.video-item:nth-child(2n+2) {
  transform: skew(-2deg, -1deg);
}

.video-item:nth-child(3n+3) {
  transform: skew(2deg, 1deg);
}
.video-item:nth-child(5n+5) {
  transform: skew(4deg);
}
.video-item:nth-child(6n+6) {
  transform: skew(-2deg, 1deg);
}

.video-wrapper, 
.video-description, 
.video-title {
  width: 80%;
  margin: 0 auto;
}

.video-description {
  margin-bottom: 2rem;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0px;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-title h1 {
  margin: 0 0 4px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2rem;
}

.video-description .video-comment {
    max-width: 60%;
    margin: 0 0 0 auto;
    line-height: 1.2rem;
}

#footer {
  position: fixed;
  bottom: 30%;
  right: -150px;
  transform: rotate(-90deg);
  text-align: center;
  font-size: 2.8rem;
}