/* Global Styles */
html {
    font-size: 16px;
    }


    body {
    font-family: 'Open Sans', sans-serif;
    color: #475831;
    background-color: #e1d7c1;
    line-height: 1.6;
    margin: 0;
    }

    a {
    color: #62a18f;
    text-decoration: none;
    }

    a:hover {
    text-decoration: underline;
    }

    img {
    max-width: 100%;
    height: auto;
    }

    .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    }

    h1, h2, h3 {
    font-weight: 600;
    margin: 1rem 0;
    }

    h1 {
      font-size: xx-large;
      text-align: center;
    }

    /* Header Styles */
    header {
    background-color: #9fc7b9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    margin:0 -25px;
    }

    nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    }

    .logo {
    display: flex;
    align-items: center;
    }

    .logo a,
    .header-title,
    .menu-links a {
    color: #ffffff;
    font-weight: 300;
    font-weight:bold
    }

    .logo img {
    width: 85px;
    }

    .logo-image {
    height: 60px;
    width: auto;
    margin-right: 10px;
    }

    .header-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    }

    nav ul {
    display: flex;
    list-style: none;
    }

    nav ul li {
    margin: 0 10px;
    }

    nav ul li a {
    font-weight: bold;
    }

    .menu-links a {
    font-size: 1.2em;
    }

    .menu-links a:hover {
    padding: 5px;
    border-radius: 5px;
    background-color: #62a18f;
    border: none;
    }

    /* Button Styles */
    .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #62a18f;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
    }

    .button:hover {
    background-color: #7f985f;
    cursor: pointer;
    }

    .body-content {
      margin: 0 20px; /* margin on the sides */
    }

    .under-archive-text {
      text-align: center;
    }

    .center-image {
      display:block;
      margin: 0 auto;
    }

    .project-demo {
      text-align: center;
    }

    .demo-section {
      max-width:1200px;
      margin: 0 auto;
    }

    .demo-text {
      justify-content: center;
    }

