header {
    border-bottom: 1px solid #348caa;
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: #f9f5eb; /* Light beige */
    max-width: 1200px;
    width: 100%;
}
header #home-button {
    font-size: 20px;
    font-weight: bold;
    margin-block-start:0.67em;
    margin-block-end:0.67em;
    margin-inline-start: 0px;
    margin-inline-end: Opx;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  width: 40px; /* Adjust the size of your logo */
  margin-right: 10px;
}

nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin-right: 0px;
}

.nav-list a {
  text-decoration: none;
    padding: 3px 12px;
}
.nav-list a:hover {
    background-color: #f8f3f3;
    border-radius: 10px;
}
.menu-icon {
  display: none;
  cursor: pointer;
  font-size: 1.8em;
  color: #348caa;
}

@media (max-width: 767px) {
  header .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 30%;
    background-color: #f4f1f1;
    padding: 50px;
    font-size: 1.5em;
    height: 400px;
    line-height: 1.5;

  }

  header .nav-list.show {
    display: flex;
  }

  header .nav-list li {
    margin-right: 0;
    margin-bottom: 10px;
  }

  header .nav-list a:hover {
    background-color: lightgrey;
    border-radius: 10px;
  }

  header .menu-icon {
    display: block;
  }
}
