@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --clay: #AB5463;
  --green: #0D3824;
  --turqoise: #2F4F4F;
}


#innerheader {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;

    a {
        font-family: "Open Sans", sans-serif;
        text-decoration: none;
        margin-left: 20px;
        font-size: 18px;
        color: var(--green);
        transition: all 0.1s ease-in-out;
    }


    a.active {
        border-bottom: var(--green) solid 2px;
    }

     a:hover {
        color: var(--clay);
        border-bottom: var(--clay) solid 2px;
                 
    }


}

