h1 {
  font-family: arial, sans-serif;
  font-size: 300%;
  text-align: center;
}

p {
  font-family: times, serif;
  font-size: 100%;
}

* {
  box-sizing: border-box;
}

.menu {
  float: left;
  width: 20%;
}
.menuitem {
  padding: 15px;
  margin-top: 10px;
}

.main {
  float: left;
  width: 60%;
  padding: 0 30px;
  overflow: visible;
}

.bottom {
  background-color:#f1f1f1;
  text-align:right;
  padding:10px;
  margin-top:7px;
  font-size:12px;
  clear:left;
}

.holder {
  position: relative;
  overflow: visible;
  width: 50%;
  padding-top: 50%;
}

.player {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

img {
  width: 40%;
}

@media only screen and (max-width:800px) {
  .menuitem {
    padding: 7px
  }

  .player {
    width: 150%;
    height: 150%;
  }
  
  img {
    width: 70%;
  }

}

@media only screen and (max-width:500px) {
  .menuitem {
    padding: 1px
  }

  .menu {
    width:40%
  }

  .player {
    width: 225%;
    height: 225%;
  }

  img {
    width: 100%;
  }
}

a:link {
  color: black;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: black;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:active {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}