body{
  margin:0px;
  padding:0px;
  overflow:scroll;
  height:auto;
  background-color: #000;
  background-image: url("background1bw.png");
  background-repeat:no-repeat;
  background-size:cover;
}

a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

iframe {
  display: block;       /* iframes are inline by default */
  background: #000;
  border: none;         /* Reset default border */
  height: 100vh;        /* Viewport-relative units */
  width: 100vw;
}

div.centered{
  text-align:center;
}

div.centered table 
{
    margin: 0 auto; 
    text-align: left;
}

div.whitebox{
  text-align:left;
  background-color: white;
  width:600px;
  margin: 0 auto; 
  opacity: 70%;
  padding:10px 10px 10px 10px;
  padding-top: 10px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 16px;
}
div.whitebox_narrow{
  text-align:left;
  background-color: white;
  width:400px;
  margin: 0 auto; 
  opacity: 70%;
  padding:10px 10px 10px 10px;
  padding-top: 10px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 16px;
}

div.blackbox{
  background-color: rgb(2, 37, 2);
  width:300px;
  height:40px;
  position:relative;
  opacity:100%;
  top:-30px;
  padding:10px;
  font-size:22px;
  color:#73f698;
  text-align: left;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#triangle-bottomleft {
  width: 0;
  height: 0;
  position:relative;
  opacity:100%;
  left:310px;
  top:-37px;
  border-bottom: 62px solid rgb(2, 37, 2);
  border-right: 100px solid transparent;
}

div.blackbox_narrow{
  background-color: rgb(2, 37, 2);
  width:200px;
  height:40px;
  position:relative;
  opacity:100%;
  top:-30px;
  padding:10px;
  font-size:18px;
  color:#73f698;
  text-align: left;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#triangle-bottomleft_narrow {
  width: 0;
  height: 0;
  position:relative;
  opacity:100%;
  left:210px;
  top:-32px;
  border-bottom: 61px solid rgb(2, 37, 2);
  border-right: 100px solid transparent;
}
.menu-list {
    display: block;
    padding: 0px;
    list-style-type: none;
    text-align: center;
    white-space: nowrap;
    background-image: url(wall.jpg);
  }
  
.menu-list-item {
    display: block;
    min-width: 130px;
    font-family: "Lato", sans-serif;/*Open Sans*/
    font-size: 14px;
    letter-spacing: 2px;
    text-align: center;
    line-height: 30px;
    color: #73f698;
    padding: 4px;
    border-style: solid;
    border-width: 1px;
    border-color: #07de44;
    border-radius: 30px;
  }

.menu-list-item a {
    display: block;
    cursor: pointer;
    color: #03a531;
  }
  
.menu-list-item:hover a {

    text-decoration: none;
    color: rgba(153, 153, 153, 1);
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    line-height: 30px;
    background-color:black;
    border-radius: 30px;
    padding: 4px;
  }

.video_player{
  width:420px;
  height:315px;
  z-index: 1;
  transition:transform 0.25s ease;
}

.video_player:hover{
  border-radius:20px;
  box-shadow: 0 32px 75px rgba(68,77,136,0.2);
  z-index: 100;
  -webkit-transform:scale(1.1); /* or some other value */
  transform:scale(1.1);
}

/*.video_player:focus{
  width:840px;
  height:630px;
  transform: translate(-50%, -50%);
  z-index: 100;
  align-items:center;
  justify-content:center;
}*/

.video_info{
  width:398px;
  height:280px;
  font-size:16px;
  background-color: white;
  opacity:50%;
  color:black;
  padding:10px;
  margin:0px 4px 4px 4px;
  margin-bottom: 10px;
  z-index: 1;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
  
@media(min-width: 480px) {
    .menu-list-item { display: inline-block; }
    .menu-list-item a { min-width: 90px; }
  }


#scroll-container {
  border: none; /*3px solid black;
  border-radius: 5px;*/
  height: 320px;
  overflow: hidden;
}

#scroll-text {
  height: 200%;
  text-align: left;
  
  /* animation properties */
  -moz-transform: translateY(100%);
  -webkit-transform: translateY(200%);
  transform: translateY(200%);
  
  -moz-animation: my-animation 35s linear infinite;
  -webkit-animation: my-animation 35s linear infinite;
  animation: my-animation 35s linear infinite;
}

/* for Firefox */
@-moz-keyframes my-animation {
  from { -moz-transform: translateY(50%); }
  to { -moz-transform: translateY(-200%); }
}

/* for Chrome */
@-webkit-keyframes my-animation {
  from { -webkit-transform: translateY(50%); }
  to { -webkit-transform: translateY(-200%); }
}

@keyframes my-animation {
  from {
    -moz-transform: translateY(50%);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  to {
    -moz-transform: translateY(-200%);
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
  }
}
