body {
  margin: 0;
  font-family: 'Times New Roman', cursive;
  background-color: #000;
  color: #fff;
}

header {
  background-color: #111;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid red;
}

.logo img {
  max-width: 120px;
  height: auto;
}

h1 {
  color: #ff0000;
  font-size: 3em;
  margin: 0.2em 0;
}


nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-top: 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

nav a:hover {
  color: #ffcc00;
  border-bottom: 2px solid #ffcc00;
}

main {
  padding: 40px 20px;
  text-align: center;
}

section {
  margin-bottom: 60px;
}

h2 {
  color: #ffcc00;
  font-size: 2em;
  margin-bottom: 20px;
}
h3 {
  color: #ffcc00;
  font-size: 1em;
  margin-bottom: 20px;
}

.galeria-imagenes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.galeria-imagenes img {
  max-width: 300px;
  border: 2px solid #ff0000;
  transition: transform 0.3s;
}

.galeria-imagenes img:hover {
  transform: scale(1.05);
  border-color: #ffcc00;
}

footer {
  background-color: #111;
  padding: 20px;
  color: #999;
  font-size: 0.9em;
  border-top: 1px solid #333;
}
.noto-serif {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

