#player {
  position: relative;
  background: #333;
  
    height: 56.25vw;
    width: 100%;
}
/* set ratio before player is loaded via css */
#player .fp-ratio {
  padding-top: 56.25%;
}
#typewarning, #audiowarning {
  position: absolute;
  top: 30%;
  width: 100%;
  font-weight: bold;
  font-size: 150%;
  color: #ff0;
  text-shadow: 0 0 3px #000;
  text-align: center;
  display: none;
}
#holder {
    padding: 5%;
}
#typewarning {
  z-index: 1;
}
#audiowarning {
  z-index: 2;
}

.file {
    display: flex;
    width: 50%;
    border: 1px solid #333;
    margin: 10px;
    padding: 5px;
    box-shadow: 2px 2px #ccc;
}
.file > span {
    flex: 1;
}

#inputfile {
    display: inline-block;
    font-size: 1em;
    font-weight: 400;
    color: black;
    background-color: white;
    position: relative;
    cursor: pointer !important;
    padding: 5px;
    margin: 10px;
    border: 1px solid #333;
}
#file {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.01;
    cursor: pointer;
}

#inputfile:focus,
#inputfile:hover {
    cursor: pointer !important;
    background-color: #eee;
}

#next {
    cursor: pointer;
    vertical-align: middle;
    border: 1px solid black;
    border-radius: 2px;
    padding: 0 10px;
}

#header {
    font-family: 'Monoton', cursive;
    display: inline-block;
}

#player video{
    width: 100%;
    height: 100%;
}

html {
    font-family: 'Share Tech Mono', monospace;
}