body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
}

header {
  font-family: Arial, sans-serif;
  background-image: url("../img/plata.jpg"); 
  color: rgba(255, 255, 255, 0.322);
  background-size: 500px;
  border: 1px solid transparent;
  padding: 6px;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  display: flex;
  box-shadow: 0 4px  10px rgb(143, 67, 0);
}

header h1 {
  color: rgba(255, 255, 255, 0.404);
  font-weight: bold;

}

header h1:hover:hover  {
  transform: scale(1.1);
}

header h2:hover  {
  color: #ff9100;
  background-color: transparent;
  transition: box-shadow 0.3s ease;
  margin-bottom: 20px
}

header h2:hover:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 1px rgb(255, 255, 255);
}

header h2 {
  color: rgba(255, 255, 255, 0.367);
  margin: 1;
  cursor: pointer;
  border-radius: 4px;
}

@keyframes animacionTexto {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}


#miTexto {
  animation: animacionTexto 2s infinite;
  
}

.header-left {
  margin-right: auto;
  font-size: 60px;
  justify-content: left;
  display: flex;
}

.header-right {
  margin-left: auto;
  display: flex;
  justify-content: right;
  transition: transform 0.3s ease;
}

.header-right a {
    text-decoration: none;
}

.header-right h2:not(:last-child) {
  margin-right: 40px;
  margin-left: 20px;
  
}

.contenedor {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px;
  box-shadow: 0 4px  10px rgb(129, 60, 0);
}

.item {
  background-color: white;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin: 20px;
  text-align: center;
  width: 300px;
}

.item h2 {
  color: #974C00;
  font-size: 24px;
  margin-bottom: 10px;
}
.item img {
  max-width: 100%;
  max-height: 200px; /* Altura máxima para las imágenes */
  border-radius: 10px;
  margin-bottom: 10px;
}

.galeria {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Agregamos flex-wrap para que las imágenes se ajusten al contenedor */
  margin: 10px -5px;
}

.galeria img {
  max-width: 100px; /* Tamaño máximo para todas las imágenes en la galería */
  max-height: 80px; /* Altura máxima para todas las imágenes en la galería */
  border-radius: 10px;
  margin: 5px;
  cursor: pointer;
}

.item p {
  color: #555;
  font-size: 16px;
  margin-top: 10px;
}

.btn {
  display: inline-block;
  background-color: #974C00;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #f7d08f;
}

footer {
  background-image: url("../img/plata.jpg"); 
  color: rgba(255, 255, 255, 0.518);
  text-align: center;
  padding: 3px;
  font-weight: bold;
}

/* Estilos personalizados para el scrollbar */
body::-webkit-scrollbar {
  width: 10px; /* Ancho del scrollbar */
}

body::-webkit-scrollbar-thumb {
  background-image: url("../img/plata.jpg"); 
  border-radius: 8px; /* Bordes redondeados del thumb */
}

body::-webkit-scrollbar-track {
  background-color: #f2f2f2; /* Color del track del scrollbar */
  border-radius: 10px; /* Bordes redondeados del track */
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); /* Sombra del track */
}
