*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
}

body, html {
      height: 100%;
      font-family:  "trebuchet-ms", sans-serif;
}

.video-background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      z-index: -1;
    }

    .video-background video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5); /* opacidad */
      z-index: 0;
    }


    .content {
      position: relative;
      z-index: 1;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
          flex-direction: column;
    gap: 30px;
    }

    .content h1 {
      color: #fff;
      font-size: 2.5rem;
      font-weight: 700;
      text-transform: uppercase;
    }