*{
  box-sizing: border-box;
}

html, body{
  margin:0;
  padding: 0;
  background-color: black;
  font-family: 'Bungee Shade', Arial, Helvetica, sans-serif;
  color:#ffe200;
}

a, a:valid, a:active, a:visited, a:hover{
  color:#ffe200;
  text-decoration:none;
  transition: all 0.3s
}

a:hover{
  transform: scale(1.2,1.2)
}

header, header picture, header img{
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.content{
  max-width: 1400px;
  width: 100%;
  padding: 15px;
  padding-top: 0;
  margin: 0 auto;
}

.content .video_content{
  width: 45%;
  margin:10px 2.3%;
  display: inline-block;
}

footer{
  font-size: 5em;
  text-align: center;
}

footer p{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12pt;
  color:white;
  margin-top: -10px
}

@media only screen and (max-width:700px){
  .content .video_content{
    width: 100%;
    margin: 5px auto;
  }
  footer{
    font-size: 3em;
    text-align: center;
  }
}