* {
    /* font-family: Arial, Helvetica, sans-serif; */
    font-family: "Nunito", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }
  
  html, body {
    /*background-color: #DDEFD8;*/
    background-color: white;
    margin: 0;
    padding: 0;
  }
  
  .caveat-font {
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  li, p {
    line-height: 1.5;
    font-size: 1.5rem;
  }
  
  .header {
    background-color: #727b42;
    position: sticky;
    top: 0;
    z-index: 998;
  }
  
  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px 20px;
    margin: 0 auto;
    align-items: center;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  
    .menu ul {
      list-style: none;
    }
  
    .menu ul.main-menu {
      width: 100%;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }
  
    .menu li {
      height: 50px;
    }
  
      .menu li:first-child {
        margin-right: auto;
        font-size: 2rem;
      }
  
    .menu a {
      height: 100%;
      text-decoration: none;
      color: #e9deb1;
      padding: 0 30px;
      display: flex;
      align-items: center;
      transition: 0.1s;
    }
  
      .menu a.menu-item:hover {
        /* background-color: #99F7AB; */
        color: #e6e2d4;
        border-bottom: 3px solid #e6e2d4;
        border-radius: 5px;
      }
  
  .logo-elements-wrapper {
    display: block;
  }
  
  .main-menu-logo-text {
    font-size: 0.8em;
  }
  
  .menu-button {
    display: none;
  }
  
    .sidebar {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 350px;
      z-index: 999;
      background-color: rgba(114, 123, 66, 0.8);
      backdrop-filter: blur(10px);
      box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
      display: none;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      margin: 0;
      padding: 0;
    }
  
    .sidebar li {
      width: 100%;
    }
  
    .sidebar a {
      width: 100%;
      color: #e9deb1;
      font-size: 1rem;
    }

    @media (max-width: 1386px) {
        .hide-on-small-screen {
          display: none;
        }
      
        .menu-button {
          display: block;
        }
      
        .logo {
          display: inline;
        }
    }

    @media (max-width: 667px) {
      .logo a {
          font-size: 1.5rem;
      }
    }
    
    @media (max-width: 450px) {
        .sidebar {
          width: 100%;
        }
    }

    @media (max-width: 434px) {
      .logo a {
        padding-left: 0;
      }

      ul.main-menu {
        padding-left: 0;
      }
    }

    @media (max-width: 364px) {
      .logo a {
        font-size: 1.2rem;
      }
    }
      
    @media (max-width: 316px) {
        .logo a {
          font-size: 1rem;
        }
    }