html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  background-image: url('background-artwork.png');
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container-main {
  width: 45%;
  height: 75%;
  margin: auto;
  display: flex;
  flex-direction: column; /* Add this line */
  justify-content: center;
  align-items: center;
  position: relative;
}


.img-container {
  position: absolute;
  top: 27%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75%;
  height: 75%;
  z-index: 0;
}

.img-container img {
  max-height: 100%;
  max-width: 100%;
}

.buttons-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  margin-top: auto;
  height: 21%;
  z-index: 1;
}

/* Remove the height property from .buttons-container */

.button {
  padding: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-left: 2%;
  padding-right: 2%;
}

a {
  color: inherit;
}

#reservations-btn,
#contact-btn,
#hiring-btn,
#pictures-btn {
  height: 90%;
  width: 53%;
  margin-top: 1%;
  margin-bottom: 1%;
  margin-left: 3%;
  margin-right: 3%;
  transition-duration: 3s;
  font-family: 'Quicksand', sans-serif;
  padding: 2%;
}

.footer {
  width: 99.9%;
  display: flex;
  height: 5%;
  justify-content: center;
  align-items: center;
  flex-shrink: 0; /* Add this line to prevent footer from shrinking */
}

.extra-utils {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* Add this line to occupy the full height */
  font-family: 'Quicksand', sans-serif;
}