* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 60px;
  font-family: "Times New Roman", Georgia, serif;
  background: #f4f1e8;
  color: #2b2b2b;
}

/* Idioma */
.idioma {
  font-size: 14px;
  margin-bottom: 20px;
}

.idioma button {
  background: none;
  border: none;
  padding: 0;
  margin-right: 6px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  color: #2b2b2b;
}

.idioma button:hover {
  text-decoration: underline;
}

/* Header y menú */
header {
  width: 100%;
  margin-bottom: 50px;
}

header h1 {
  margin: 0 0 20px 0;
  font-weight: normal;
  letter-spacing: 0.5px;
}

nav {
  width: 100%;
  margin-bottom: 40px;
}

nav a {
  display: inline-block;
  margin-right: 18px;
  text-decoration: none;
  color: #2b2b2b;
}

nav a:hover {
  text-decoration: underline;
}

/* Texto */
.texto {
  max-width: 640px;
  margin: 0 auto 80px auto;
  font-size: 19px;
  line-height: 1.7;
}

.texto h2 {
  font-weight: normal;
  margin-bottom: 20px;
}

.texto p {
  margin-bottom: 22px;
}

/* Galería */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px;
}

.obra {
  background: #faf8f2;
  padding: 18px;
  border: 1px solid #ddd6c8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
  filter: sepia(8%) contrast(95%);
}

/* Idiomas */
.lang-en {
  display: none;
}
