h1 {
  position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      text-align: center;
      padding: 20px;
      background-color: #333;
      color: white;
      margin: 0;
      z-index: 1000; 
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
h5 {
  position:fixed;
  background-color: #333;
  color: white;
  margin: 0;
  z-index: 1000; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  bottom:90px;

  }

body {
  font-family: Arial, sans-serif;
  background-color: #333;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
video::cue {
  line-height: 4.4;
  position: relative;
  bottom: 60px; 
}
.player-container {
  position: relative;
  width: 840px;
  background-color: #000;
}

video {
  width: 100%;
  display: block;
}

.controls {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5px;
  border-radius: 5px;
}

button, input, select {
  background-color: #444;
  color: white;
  border: none;
  padding: 5px;
  border-radius: 5px;
  margin: 0 5px;
}

input[type="range"] {
  width: 100px;
}
