/* estilos.css */

html, body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: Arial, sans-serif;
  color: #0f0;
  height: 100%;
}

.contenedor-principal {
  padding: 20px;
  box-sizing: border-box;
  min-height: 100vh;
  background-color: #000;
}

.seccion-principal {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  border: 2px solid #0f0;
  padding: 20px;
  margin-bottom: 30px;
  background-color: #000;
  background-image: url("portada.jpg");
  justify-content: center;
}

.foto-principal, .foto-principal2  {
  width: 200px;
  height: auto;
  border: 6px solid #00f;  /* #00f* azul*/
}
.foto-principal3 {
  width: 700px;
  height: 350px;
  border: 6px solid #00f;
}


.texto-denuncia {
  flex: 1;
  border: 2px solid #0f0;
  padding: 15px;
  background-color: #111;
}

.imagenes-secundarias {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  background-color: #000;
}

.imagenes-secundarias img {
  width: calc(15% - 10px);
  height: auto;
  border: 2px solid #0f0;
  box-sizing: border-box;
  background-color: #000;
}


.video {
  display: flex;
  justify-content: center;
  padding: 20px;
  border: 4px solid #0f0;  
}

.video-player {
  width: 300vh;
  max-width: 640px;
  height: auto;
  border: 2px solid #00f; /* opcional, como los demás elementos */
}

