.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#myVideo {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.nav-item {
  transition: transform 0.3s ease; 
  color: #fc0202;
}

.nav-item:hover {
  transform: scale(1.4); 
  transform: perspective(30deg);
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }