html, body {
  height: 100%;
  margin: 0;
  overflow: hidden; /* Megakadályozza a görgetést */
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
}
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* A videó kitölti a képernyőt */
  z-index: -1; /* Háttérként jelenik meg */
}
.content {
  position: relative;
  text-align: center;
  color: white; /* Kontrasztos szöveg */
  font-family: Arial, sans-serif;
}
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.content h1 {
    color: grey;
    font-size: 3em;
    animation: fadeIn 1.5s ease-in-out;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 70% 80%, 50% 120%, 0 80%);
}
.content p {
    color: black;
}
video {   /* override other styles to make responsive */   
width: 100%    !important;   
height: auto   !important; 
object-fit: fill;  
}