body {
  margin: 0;
  height: 100vh;
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow-y: hidden;
  animation: fadeIn 1s ease-out;
  user-select: none;
}

.header {
  text-align: center;
  margin-bottom: 20px;
}

.header h1 {
  font-size: 35px;
  margin: 0;
  text-shadow: 0px 0px 3px white;
}

.header p {
  font-size: 25px;
  margin: 5px 0;
  text-shadow: 0px 0px 15px white;
}

.light {
  position: absolute;
  width: 0px;
  opacity: .75;
  background-color: white;
  box-shadow: white 0px 0px 20px 2px;
  opacity: 0;
  top: -100vh;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.x1 {
  animation: floatDown 7s infinite linear;
  transform: scale(1.6);
  left: 15%;
}

.x2 {
  animation: floatDown 2.5s infinite linear;
  transform: scale(.5);
  left: -15%;
}

.x3 {
  animation: floatDown 4.5s infinite linear;
  transform: scale(1.2);
  left: -34%;
}

.x4 {
  animation: floatDown 8s infinite linear;
  transform: scale(2.2);
  left: -57%;
}

.x5 {
  animation: floatDown 3s infinite linear;
  transform: scale(.8);
  left: -81%;
}

.x6 {
  animation: floatDown 5.3s infinite linear;
  transform: scale(3.2);
  left: 37%;
}

.x7 {
  animation: floatDown 4.7s infinite linear;
  transform: scale(1.7);
  left: 62%;
}

.x8 {
  animation: floatDown 4.1s infinite linear;
  transform: scale(0.9);
  left: 85%;
}

@keyframes floatDown {
  0% { top: -100vh; opacity: 0; }
  25% { opacity: 1; }
  50% { top: 50vh; opacity: .8; }
  75% { opacity: 1; }
  100% { top: 100vh; opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  user-select: none;
}

.socials a {
  color: white;
  text-decoration: none;
  font-size: 35px;
  transition: all 0.2s ease-in;
}

.socials a:hover {
  color: white;
  text-shadow: 0px 0px 42px white;
  transition: all 0.2s ease-in;
}

#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease;
}

#intro button {
  padding: 1rem 2rem;
  font-size: 1.5rem;
  background: none;
  border: 2px solid white;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

#intro button:hover {
  background: white;
  color: black;
}

#video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.hidden {
  display: none;
}

.volumeControl {
  margin-bottom: 50px;
  cursor: pointer;
}
