/* ESTILOS GENERALES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

.container {
  text-align: center;
}

h1 {
  font-family: "Share Tech Mono", monospace;
  font-size: 100px;
  padding-top: 2%;
}

h2 {
  font-family: "Share Tech Mono", monospace;
  font-size: 50px;
  margin-bottom: 0.2em;
}

video {
  width: 80%;
  max-width: 500px;
  margin-bottom: 1em;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1em;
}

.social-icons img {
  width: 5px;
  height: 5px;
  filter: invert(1); /* To make icons white */
}

@media (max-width: 600px) {
  h1 {
    font-size: 3em;
  }

  h2 {
    font-size: 1.5em;
    margin-bottom: 2em;
  }

  video {
    width: 60%;
    margin-bottom: 2em;
  }

  .social-icons img {
    width: 20px;
    height: 20px;
    margin-top: 2em;
  }
}

#particles-js {
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: -1;
}

footer {
  min-height: 100px;
}

.footer-logo {
  height: 80px;
  width: 80px;
  margin: 10px;
}

.footer-texto {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.5rem;
  padding: 20px;
  margin-bottom: 30px;
}

.iconos-redes-sociales a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  margin: 20px;
  border: 2px solid white;
  border-radius: 50%;
  transition: all 0.2s ease-in;
}

.iconos-redes-sociales i {
  color: white;
  font-size: 2rem;
  transition: all 0.2s ease-in;
}

.iconos-redes-sociales a:hover {
  background-color: #23ca00;
  border: 3px solid #23ca00;
}

.iconos-redes-sociales a:hover i {
  color: black;
}
