
body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}
header {
  text-align: center;
  padding: 2rem;
  background: #030247;
  color: white;
}

h1 {
  text-align: center;
  font-size: 1.9em;
  font-size-adjust: 0.5;
}

.nombre {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.6em;
  font-family: "Playfair Display", serif;
  font-weight: 400;
}
.nombre .mayuscula{
  font-size: 3rem;
  vertical-align: baseline;
  display: inline-block;
  line-height: 0.9;
  font-style:italic;
  letter-spacing: 4px;
}

.grid-container {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card h2 {
  margin: 1rem 0 0.5rem;
}

.card a {
  display: inline-block;
  margin: 1rem;
  padding: 0.5rem 1rem;
  background: #007acc;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.card a:hover {
  background: #005fa3;
}
