html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Cascadia Code', monospace;
}

#videoWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

#overlay {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background-color: rgba(0,0,0,0.3);
  z-index: -1;
}

#centerText {
  position: absolute;
  top:50%; left:50%;
  transform: translate(-50%,-50%);
  background-color: rgba(0,0,0,0.7);
  color:white;
  padding:60px 100px;
  border-radius:25px;
  text-align:center;
  font-size:36px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 25px rgba(0,0,0,0.5);
  white-space: pre-line;
}

#bottomText {
  position:absolute;
  bottom:30px; left:50%;
  transform:translateX(-50%);
  background-color: rgba(0,0,0,0.6);
  color:white;
  padding:20px 40px;
  border-radius:15px;
  font-size:18px;
  text-align:center;
  box-shadow:0 0 15px rgba(0,0,0,0.4);
}

#unmuteBtn {
  position:absolute;
  top:20px; right:20px;
  background-color:#555555;
  border:none;
  padding:12px;
  border-radius:12px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.2s;
}

#unmuteBtn:hover {
  background-color:#777777;
}

#volumeIcon {
  width:30px;
  height:30px;
}