body {
    font-family: 'Garamond', 'Times New Roman', serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    font-size: 16px;
  }

header {
    background-color: #291817;
    color:rgb(218,210,210);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
  }

header img {
    width: 30%;
    height: auto;
  }

header .hours {
    text-align: left;
    font-size: 6px;
  }

header .hours span {
    display: block;
    white-space: nowrap;
  }

nav {
    display: flex; /* Use flexbox to layout links side by side */
    justify-content: center; /* Center the links within the navigation */
    align-items: center; /* Align links vertically */
    padding: 10px;
}

nav a {
    color:rgb(218,210,210);
    text-decoration: none;
    padding: 10px;
    /* Optional: add margin to separate links a bit more if needed */
}

  main {
    color:rgb(255,255,255);
    padding: 20px;
    background-image: url('main_image.webp');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    text-align: center; /* Center-align text */
  }

  footer {
    background-color: rgb(35, 17, 17);
    color: rgb(218, 210, 210);
    padding: 20px;
    text-align: left;
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    margin-top: 5px;
    margin-bottom: 5px;
}


@media (max-width: 600px) {
    nav {
      flex-direction: column; /* Stacks links vertically on small screens */
      padding: 5px;
    }
    nav a {
      padding: 8px; /* Smaller padding for smaller screens */
    }
  }
