body {

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #000;
}

.logo {
  width: 600px;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.social-buttons {
  margin-top: 50px;
  display: flex;
  gap: 30px;
  align-items: center;
}

.social-button {
  text-decoration: none;
  transition: opacity 0.2s ease;
  line-height: 0;
}

.social-button:hover {
  opacity: 0.7;
}

.social-button svg {
  width: 32px;
  height: 32px;
  fill: #45d037;
  filter: drop-shadow(0 0 3px rgba(0, 255, 65, 0.5));
}

.footer-text {
  position: fixed;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: 'helvetica';
  font-size: 10px;
  color: #fff;
  opacity: 0.3;
  pointer-events: none;
  z-index: 101;
}
