 body {
      margin: 0;
      font-family: "Times New Roman", Times, serif;
      background-color: rgb(231, 227, 215);
  }

 header {
    box-shadow: 0 5px 10px rgb(163, 163, 158);
    padding: 10px 20px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* left align */
    gap: 20px; /* space between link and title */
    flex-wrap: wrap; /* wrap on very small screens */
}

.header-link {
    width: auto; /* auto width for inline */
    padding: 8px 20px;
    background-color: rgb(216,202,202);
    border-radius: 8px;
    box-shadow: 0 5px 10px rgb(109,109,106);
    text-decoration: none;
    color: black;
    font-size: 18px;
    display: inline-block;
    text-align: center;
}

.header-link:hover {
    background-color: #f5b429 !important;
}

.header-container h2 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    display: inline-block;
}

  h1 {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 10px;
      text-align: center;
  }