html, body {
	overflow-x: hidden; /* para evitar el scroll horizontal */
	margin: 0;
	padding: 0;
  }


#particles-js{
	background-color:black;
	position: fixed;   /* siempre cubre toda la pantalla */
	top: 0;
	left: 0;
	width: 100vw;      /* ancho total de la ventana */
	height: 100vh;     /* alto total de la ventana */
	z-index: 1;        /* permite interacción con las partículas */
	margin: 0;
	padding: 0;
	pointer-events: auto;
  }
  

  body{
	color: white;
  }

  /* Asegurar que el contenido sea clickeable sobre las partículas */
  header, main, footer {
	position: relative;
	z-index: 2;
	pointer-events: auto;
  }

  /* Asegurar que el canvas de las partículas sea interactivo */
  #particles-js canvas {
	pointer-events: auto;
  }

  

header {
	text-align: center;
	padding: 2rem 1rem;
  }
  
  header h1 {
	font-size: 2.5rem;
	color: white ;
	margin-bottom: 0.5rem;
	font-family: "Jersey 15", sans-serif;
  }
  
  header h2 {
	font-size: 1.2rem;
	color: #ddd;
	font-weight: 400;
  }
  
  #hi {
	width: 80px;
	vertical-align: middle;
  }
  
  #icon {
	margin-top: 1rem;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 3px solid #ffb347;
	object-fit: cover;
 	background-color: black;
  }
  
  /* === MAIN === */
  main {
	max-width: 900px;
	margin: auto;
	padding: 2rem 1rem;
  }
  
  section {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 1.5rem;
	margin-bottom: 2rem;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }
  
  section h2, section h3 {
	margin-bottom: 1rem;
	color: #ffb347;
	font-family: "Jersey 15", sans-serif;
  }
  
  ul {
	list-style-type: square;
	margin-left: 1.5rem;
  }
  
  ul li {
	margin-bottom: 0.5rem;
  }

  #btn-home{
	color: #ddd;
	background-color: black;
	border: 2px solid #ffffff;
	padding: 10px 20px;
	border-radius: 8px;
	text-decoration: none;
	display: inline-block;
	margin: 1rem 0;
	transition: all 1s ease;
	z-index: 5;
	position: fixed;
	font-family: "Jersey 15", sans-serif;
}

#btn-home:hover {
	background-color: rgba(0, 0, 0, 0);
	border-color: #050300;
	color: #ffd27f;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px red;
}

  
  /* === IMÁGENES === */
  .img {
	display: block;
	margin: 1rem auto;
	max-width: 250px;
	border-radius: 10px;
	box-shadow: 0 3px 8px rgba(0,0,0,0.4);
  }
  
  /* === LINKS === */
  a {
	color: #ffb347;
	text-decoration: none;
	transition: 0.3s;
  }
  
  a:hover {
	text-decoration: underline;
	color: #ffd27f;
  }
  
  
  /* === RESPONSIVE === */
  @media (max-width: 600px) {
	header h1 {
	  font-size: 2rem;
	}
  
	#icon {
	  width: 90px;
	  height: 90px;
	}
  
	.img {
	  max-width: 180px;
	}
  }
  .jersey-15-regular {
	font-family: "Jersey 15", sans-serif;
	font-weight: 400;
	font-style: normal;
  }
  