body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: black; /* Fundal complet negru */
  color: white;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  width: 90%;
  max-width: 1200px; /* Dimensiune mai mare pentru ecrane mari */
  padding: 20px;
}

h1 {
  text-shadow: 2px 2px 10px red; /* Efect roșu pentru text */
}

video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.7); /* Efect de umbră roșie */
}

/* Mărește videoclipul pe ecrane mari */
@media screen and (min-width: 1024px) {
  video {
    width: 80%;
  }
}
