body {
    background: url(grid.jpg) repeat;
    animation: bg-scroll 18s infinite linear 0s;
   
}

ul {

  margin: 0;
  padding: 0;
}
.tape {
    transition-duration: 200ms;
   display: block;
  margin-left: 12.5vw;
  margin-right: 12.5vw;
  width: 75vw;
padding-top: 0.5%;
}
.tape:hover{
    width: 80%;
    margin-left: 11vw;
}

#splashbg{
      position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
    background-color: black;
    opacity: 0;
}


@keyframes bg-scroll {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 612px 612px;
    }
}
    h1 {
      font-weight: normal;
      margin: 2em 0;
    }
    p {
      line-height: 150%;
      max-width: 36em;
      margin: 1em auto;
    }
    a {
      color: #aaa;
      text-decoration: none;
      border-bottom: 1px solid #444;
      -webkit-transition: color 0.2s ease-in;
      -moz-transition: color 0.2s ease-in;
      -o-transition: color 0.2s ease-in;
      transition: color 0.2s ease-in;
    }
    a:hover,
    a:focus {
      color: #eee;
    }
* {
  box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
      max-width: 60vw;
    left: 20vw;
}

/* Hide the images by default */
.mySlides {
  display: none;
  
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}