/* Fondo general */
body {
  margin: 0;
  font-family: Verdana, Arial, sans-serif;
  background: url("https://images6.alphacoders.com/139/1397294.webp") repeat;
  color: #fff;
}

/* Contenedor central */
.container {
  width: 900px;
  margin: 20px auto;
  background: rgba(0, 20, 50, 0.85); /* cuadro azul semitransparente */
  border: 3px solid #0af;
  padding: 15px;
  box-shadow: 0 0 20px #0af;
}

/* Título arriba */
.titulo {
  text-align: center;
  font-size: 48px;
  color: #00ccff;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px #000;
}

/* Banner */
.banner img {
  width: 100%;
  border: 3px solid #00aaff;
  margin-bottom: 15px;
}

/* Menú */
.menu {
  text-align: center;
  background: #004080;
  padding: 10px 0;
  margin-bottom: 20px;
  border-top: 2px solid #00aaff;
  border-bottom: 2px solid #00aaff;
}

.menu a {
  display: inline-block;
  margin: 0 15px;
  padding: 8px 15px;
  color: #fff;
  text-decoration: none;
  background: #0066cc;
  border: 2px solid #00aaff;
  font-weight: bold;
  font-size: 14px;
}

.menu a:hover {
  background: #00aaff;
  color: #000;
}

/* Contenido */
.contenido {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
}

.texto {
  width: 55%;
}

.texto h2 {
  color: #00ccff;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px #000;
}

.texto p {
  line-height: 1.5;
}

.imagen-starman img {
  max-width: 300px;
  border: 3px solid #00aaff;
  box-shadow: 0 0 15px #00ccff;
}

/* Pie de página */
footer {
  text-align: center;
  background: #004080;
  padding: 8px;
  margin-top: 20px;
  border-top: 2px solid #00aaff;
  font-size: 12px;
}
