body {
  font-family: "Varuna", sans-serif;
  background-color: #500432;
  color: white;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Varuna";
  letter-spacing: 5px;
}
.title {
  font-family: "Vivaldi", sans-serif;
  font-weight: bold;
/*  color: black;*/
}
.subtitle {
  font-weight: bold;
  font-style: italic;
/*  color: black;*/
}
.image-container {
  position: relative;
  display: inline-block;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* Initial transparent background */
  opacity: 0;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay:hover {
  background-color: rgba(0, 0, 0, 0.7); /* Black with 0.7 opacity on hover */
  opacity: 1;
}

.gallery {
  display: none;
  max-height: 80vh;
  max-width: 100%;
  margin: auto;
}

#modal1, #modal2 {
  align-items: center;
  justify-content: center;
}

.btn {
  z-index: 1;
}

td {
  color: black;
}

tr {
  transition: background-color 0.3s ease;
}

.contact {
  transition: background-color 0.4s ease;
}