/* Global Styles */
body {
  background-color: #ffffff;
  color: #000000;
  font-family: Arial, sans-serif;
}

/* Header Styles */
header {
  background-color: #80521e;
  color: #ffffff;
  padding: 10px;
}

header h1 {
  margin: 0;
}

/* Gallery Styles */
.gallery {
 display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  overflow: hidden; /* Set the overflow property to hidden */
  height: auto; /* Set a fixed height for the gallery */
}

.gallery img {
  width: 250px;
  height: 250px;
  margin: 10px;
  outline: 2px solid #80521e;
	  object-fit: cover; /* Use the object-fit property to crop the image */

  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.1);
}


/* Button Styles */
.buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.buttons a {
  background-color: #80521e;
  color: #ffffff;
  border: none;
  padding: 10px;
  margin: 10px;
  border-radius: 5px;
  text-decoration: none;
}

.buttons a:hover {
  background-color: #ffffff;
  color: #80521e;
}

/* Centered Title and Description */
.ramirez-title {
  text-align: center;
}

.ramirez-description p {
  margin: 20px auto; /* Change the margin as needed */
  max-width: 800px;
  text-align: center; /* Add this property to justify the text */
  line-height: 1.5; /* Add this property to adjust the line height */
}

/* Home Button Styles */
.home-button {
  display: inline-block;
  padding: 10px;
  background-color: #80521e;
  color: #ffffff;
  border: 2px solid #ffffff;
  text-decoration: none;
  border-radius: 5px;
}

.home-button:hover {
  background-color: #ffffff;
  color: #80521e;
}

/* Image Overlay Styles */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

#overlay-image {
  max-width: 90%;
  max-height: 90%;
}
