body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.vid-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.image-overlay {
  position: absolute; /* Position the image absolutely within the .video-container */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Places the image in front of the video */
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Scales the image to cover the container */
  opacity: 0.2;
}


#container {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 20px;
}


  h1 {
    font-size: 60px;
    font-weight: bold;
    background-image: linear-gradient(to right, #ff0000, #ffa500, #ffff00, #008000, #0000ff, #4b0082, #ee82ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-text-stroke: 1px black;
  }
  
  
  h2 {
    background-color: rgb(255, 239, 220);
    display: inline-block;
    font-size: 2em;
    font-weight: bold;
    color: #474747;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5px;
    border: 2px solid black;
    border-radius: 10px;
    padding: 20px;
  }
  @keyframes sparkle {
    0% {
        opacity: 1;
        color: #07fe0bd5;
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
        color: #1111efe0;
    }
    100% {
        opacity: 1;
        color: #f72428dc;
    }
}

.sparkling {
    animation: sparkle 0.5s ease infinite;
}

  p {
    font-size: 2em;
    font-weight: bold;
    color: rgb(248, 248, 247);
    -webkit-text-stroke: 1px black;
    margin-top: 0;
  }
  
  button {
    background-color: #fa0079aa; /* Green */
    border: 1px solid black;
    border-radius: 5px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    transition: all 0.3s ease; /* Add transition effect */
  }
  
  button:hover {
    background-color: #2566c0be; /* Change background color on hover */
    color: white;
    transform: scale(1.1); /* Add scale effect on hover */
  }
  