.header {
  padding: 0 10%; 
}

.collapse {
  padding: 0.25em;
  background: none;
  color: var(--colLight);
  border: none;
  margin: 1em 0.5em;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  font-size: 18px;
  border-top: 3px solid var(--colAcc);
  width: 100%
}

.tube {
  pointer-events: none;
  user-select: none;
  width: 84%;
  height: 90%;
  position: absolute;
  top: 8%;
  left: 8%; 
  z-index: 5;
}

.screen {
  background-color: #000;
  width: 47.7%;
  height: 59.5%;
  position: absolute;
  top: 22.5%;
  left: 16.3%;
  z-index: 3; 
  box-shadow: inset 0px 0px 30px 0px #000;
}

.vidlist {
  background-color: var(--colMain);
  margin: 0;
  width: 19.5%;
  height: 57.5%;
  position: absolute;
  top: 30%;
  left: 69%;
  box-shadow: inset 0px 0px 30px 0px var(--colAcc2);
  z-index: 3;
  overflow-y: scroll;
  overflow-x: hidden;
}

.video {
  border-top: 2px solid var(--colCon);
}

.floating-image {
  opacity: 0.1;
}

p {
  margin: 0.5em;
  padding-left: 0.5em;
}

body {
  background: linear-gradient(-3deg,#080014 0% , #1d0047 15%, #080014 30%, #080014 45%, #0a2226 65%,  #0a2226 70%, #080014 85%, #1d0047 100%); 
}

@media screen and (max-width: 1100px) {
  .tube {
    width: 100%;
    height: 80%;
    top: 15%;
    left: 0;
  }
  
  .screen {
    width: 57%;
    height: 54%;
    top: 27%;
    left: 10%;
  }
  
  .vidlist {
    width: 23%;
    height: 50%;
    top: 35%;
    left: 72%;
  }
}