:root {
  --bg-color: #000;
  --primary-color: #0a0a0a;
  --secondary-color: #141414;
  --accent-color: white;
  --text-color: white;
  --text-muted-color: #dcdcdc;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

@keyframes flicker {
  to {
    mask-position:
      50% 50%,
      0 50%;
  }
}

.el {
  position: relative;
}

.el::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  mask:
    radial-gradient(circle at 50% 50%, white 2px, transparent 2.5px) 50% 50% /
      20px 20px,
    url("assets/noise-mask.webp") 256px 50% / 256px 256px;
  mask-composite: intersect;
  animation: flicker 20s infinite linear;
  z-index: -1;
}

#home {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#home .container h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

#home .container p {
  font-size: 1.2rem;
  color: var(--text-muted-color);
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.social-buttons {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 100;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 15px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  width: 150px;
}

.btn:hover {
  background-color: var(--accent-color);
  color: var(--bg-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 230, 255, 0.2);
}

.btn i {
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .social-buttons {
    width: 90%;
  }
  .btn {
    flex-grow: 1;
    width: auto;
  }
}
