body {
  background-color: #1a0000;
  color: #ffd699;
  font-family: "Courier New", monospace;
  background-repeat: repeat;
  margin: 0;
  padding: 0;
}

.header {
  background-color: #330000;
  text-align: center;
  padding: 20px;
  border-bottom: 3px dashed #ff6600;
}

.main {
  display: flex;
}

.sidebar {
  width: 220px;
  background-color: #2b0000;
  padding: 20px;
  border-right: 3px dashed #ff9933;
  min-height: 100vh;
}

.sidebar h2 {
  color: #ffcc00;
  font-size: 16px;
  margin-top: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 10px;
}

.sidebar a {
  color: #ffaa55;
  text-decoration: none;
}

.sidebar a:hover {
  text-decoration: underline;
  color: #ffcc99;
}

.content {
  flex: 1;
  padding: 20px;
}

.footer {
  text-align: center;
  font-size: 12px;
  color: #ff6600;
  margin-top: 40px;
  padding: 10px;
  border-top: 2px dashed #ff6600;
}

/* Estilos específicos para la galería de archivos */
.contenedor-archivo {
  background-color: rgba(51, 0, 0, 0.85);
  padding: 2rem;
  border: 1px dashed #ff9933;
}

.biblioteca-titulo {
  color: #ff6600;
  text-shadow: 1px 1px 5px #ff3300;
  text-align: center;
  margin-bottom: 2rem;
}

.galeria-archivos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.archivo {
  background-color: #220000;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  color: #ffd699;
  border: 2px dashed #ffcc66;
  transition: transform 0.2s;
}

.archivo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 2px solid #ff6600;
  margin-bottom: 0.5rem;
}

.archivo:hover {
  transform: scale(1.05);
  border-color: gold;
  background-color: #330000;
}