@keyframes from-green {
    from {color: green}
}

#header {
    display: grid;
    background-color: #2d2d2d;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 60px;
    padding: 10px;
    z-index: 5;
    align-items: center;
}

#header-text {
    padding-left: 75px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: goldenrod;
    
    animation-name: from-green;
    animation-duration: 2s;
}

#header-menu {
    position: absolute;
    width: 40%;
    height: 100px;
    padding-right: 20px;
    justify-self: end;
    color: darkgoldenrod;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    animation-name: from-green;
    animation-duration: 2s;
}

#projects-menu {
}

#projects-menu-hover {
    width: 15%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}

#projects-menu-hover:hover {
    background-color: green;
}
