header {
    background-color: rgb(231, 231, 231);
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
    background-color: rgb(10, 10, 10);
    height: auto;
}

#header nav {
    background-color: rgb(22, 22, 22);
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    padding: 0 50px;
}

#menu-items {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#menu-items li {
    display: inline;
    margin-left: 30px;
    position: relative;
}

#menu-items a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 22px;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    transition: color 0.3s, border-bottom 0.3s;
}

#menu-items a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px; /* Adjust if needed */
    width: 0;
    height: 1px; /* Thickness of the underline */
    background-color: rgb(255, 255, 255);
    transition: width 0.3s;
}

#menu-items a:hover::after,
#menu-items a.active::after {
    width: 100%;
}

#menu-items a.active {
    color: rgb(240, 240, 240); /* Optional: Change color when active */
}



#ml-logo, #image-link {
    height: 50px;
    width: auto;
    display: block;
    margin-right: auto;
}
