body {
  margin: 0;
  padding: 0;
  background-image: url('assets/ee.gif');
  background-size: cover;
  background-position: center;
  font-family: 'Tahoma', sans-serif;
  color: white;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: brightness(0.6);
}
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  margin-top: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.social-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  padding: 12px 20px;
  background-color: rgba(8, 4, 4, 0.1);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-box i {
  margin-right: 10px;
  font-size: 1.4rem;
}

.social-box:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}
