.video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: black;
  height: 100vh;
  justify-content: center;
}

video {
  max-width: 90%;
  max-height: 80%;
  border: 2px solid white;
  border-radius: 10px;
}

.controls {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.controls button {
  font-size: 24px;
  background: #00796b;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
}

.controls button:hover {
  background: #004d40;
}
