body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 99vh;
}

h1 {
  text-align: center;
  background-color: #a765e6;
  font-weight: 800;
  font-size: 2rem;
  padding: 10px 25px;
  border-radius: 10px;
}

.video-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

video {
  border-radius: 10px;
}

button {
  font-weight: 800;
  background-color: #a765e6;
  padding: 1rem 1.5rem;
  border-radius: 50%;
  border: none;
  font-size: 1.3rem;
}

button:hover {
  cursor: pointer;
  background-color: #4836ad;
}
