a#viewSource {
  border: none;
  bottom: 1em;
  color: #36f;
  padding: 0 0 0 1.5em;
  position: absolute;
  width: 200px;
  z-index: 10;
}

body,
html {
  height: 100%;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

body {
  background-color: #141;
  background-image: url(../images/crissyField.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}

div#container {
  background: none;
  max-width: 100%;
  position: relative;
}

p {
  color: black;
}

span#clearSpan {
  color: #7af;
  cursor: pointer;
}

span#clearSpan:hover {
  text-decoration: underline;
}

video#chrome {
  bottom: 0;
  position: absolute;
  -moz-transition: opacity 1.5s ease-in-out;
  -ms-transition: opacity 1.5s ease-in-out;
  -o-transition: opacity 1.5s ease-in-out;
  -webkit-transition: opacity 1.5s ease-in-out;
  transition: opacity 1s;
  width: 150%;
}

video#chrome.transparent {
  opacity: 0;
}

video#video1,
video#video2 {
  -moz-animation-duration: 3s;
  -ms-animation-duration: 3s;
  -o-animation-duration: 3s;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  background: transparent;
  position: absolute;
}

video#video1 {
  bottom: 0;
  left: 10%;
  width: 50%;
  z-index: 1;
}

video#video2 {
  bottom: 50px;
  right: 10%;
  width: 25%;
  z-index: 1;
}

.rotateOut {
  -moz-animation-name: rotateOut;
  -ms-animation-name: rotateOut;
  -o-animation-name: rotateOut;
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  50% {
    opacity: 0;
    -webkit-transform: rotate(-2000deg) scale(0);
    transform: rotate(-2000deg) scale(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  100% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
    -webkit-transform: rotate(2000deg) scale(1);
    transform: rotate(2000deg) scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@keyframes rotateOut {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transform: rotate(0) scale(1);
    transform-origin: center center;
  }

  50% {
    opacity: 0;
    transform: rotate(-2000deg) scale(0);
    transform-origin: center center;
  }

  100% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: rotate(2000deg) scale(1);
    transform-origin: center center;
  }
}

