   body{
      height: 100%;
      margin:0;
      background: linear-gradient(135deg, #bed9e6 0%, #FFFBF0 100%);
      font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
      color:#223;
    }

 header {
    box-shadow: 0 5px 10px rgb(65, 63, 61);
    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: antiquewhite;
    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: 22px;
      font-weight: bold;
      margin-bottom: 10px;
      text-align: center;
      margin-top: 20px;
  }
  