/* Fondo con imagen */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 background: url('MUNICH.jpg') no-repeat center center fixed;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #f2f2f2;
}

/* Contenedor principal con fondo oscuro transparente */
.contenido {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 30px;
  max-width: 1000px;
  margin: 30px auto;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

h1 {
  font-size: 3rem;
  color: #ffcc33;
  text-align: center;
  margin-bottom: 30px;
}

h2 {
  color: #33ccff;
  font-size: 2rem;
  border-bottom: 2px solid #33ccff;
  padding-bottom: 5px;
  margin-top: 40px;
}

section {
  margin-bottom: 40px;
}

section p {
  font-size: 1.1rem;
  line-height: 1.6;
}

section img {
  width: 90%;
  max-width: 350px;
  border-radius: 12px;
  margin: 10px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

section div {
  margin-bottom: 30px;
}

a {
  color: #66e0ff;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin: 10px 0;
  transition: color 0.3s;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.fotos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.fotos img {
  margin: 10px;
}
