body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  z-index: 1;
  background-color: rgba(51, 51, 51, 0.5);
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.8;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  flex-grow: 1;
  position: absolute;
  padding: 20px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-signup-button {
  position: absolute;
  top: 30px;
  right: 20px;
}

.login-signup-button a {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.login-signup-button a:hover {
  background-color: #0056b3;
}

.social-icons {
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  display: flex;
  justify-content: center;
  background-color: rgba(51, 51, 51, 0.5);
  font-family: 'Poppins', sans-serif;
  
}

.social-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 10px;
  line-height: 3;
  padding-top: 10px;
}

.social-icons a img {
  width: 23px;
  height: 23px;
}

.social-icons span {
  font-size: 14px;
  color: #ffffff;
  margin-top: 5px;
}

.footer {
  position: absolute;
  bottom: -43px;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  background-color: rgba(51, 51, 51, 0.5);
  color: #fff;
  text-align: center;
  font-family: 'Fira Sans', sans-serif;
  z-index: 2;
}

/* Responsive */
@media (max-width: 600px) {
  .video-container {
    padding-bottom: 100%;
  }

  .footer {
    padding: 20px 0;
    font-size: 12px;
  }

  .social-icons {
    bottom: 10px;
  }

  .social-icons a {
    margin: 0 5px;
  }
}