body {
  font: 100% Lora, serif;
  color: #333;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

.site-wrapper {
  position: fixed;
  background-color: #d8cc99;
  width: 100%;
  height: 100vh;
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  height: 8rem;
}

.navbar div {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
}

.navbar img {
  position: absolute;
  top: 0;
  padding: 0.25rem;
  padding-left: 2rem;
  height: 100%;
  aspect-ratio: 1/1;
  box-sizing: border-box;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  height: 100%;
  width: 100%;
}

main article {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

main article section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

main article section .section-border {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

main .centered-content {
  position: absolute;
  display: flex;
  justify-content: center;
  flex-flow: column;
  gap: 1rem;
}

main .centered-content .landing-text-container {
  background-color: rgba(0, 0, 0, 0.5019607843);
  padding: 0.125rem 0.5rem;
  display: flex;
  justify-content: center;
  flex-flow: column;
  border-radius: 0.25rem;
}

main .centered-content .landing-text-container div {
  color: white;
  font-size: 5rem;
  font-weight: 700;
  font-family: Lora, serif;
  text-wrap: wrap;
  padding: 0;
  text-transform: uppercase;
}

main .centered-content .button-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

main .centered-content .button-container a button {
  box-sizing: border-box;
  border-radius: 0.25rem;
  height: 5rem;
  padding: 0.5rem 1rem;
  background-color: #E6E6C9;
  color: #363129;
  border: none;
  font-size: 3rem;
  font-weight: 500;
  font-family: Lora, serif;
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
  /* Adjusted default box-shadow for an interactable look */
  cursor: pointer;
}

main .centered-content .button-container a button:hover {
  transition: 0.1s;
  /* Adding transition for smooth hover effect */
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.3);
  /* Adjusted box-shadow on hover for a more prominent effect */
}

main .background-image-house {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: 50% 50%;
  object-fit: cover;
  opacity: 0.35;
}