#loginmenu{
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: center;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(max-content, 0px));
    grid-gap: 20px;

    background-color: var(--colord2a679);
    
}

#backtologin, #aboutus, #goregister, #reset, #contactus{
    cursor: pointer;
}

#goregister>a:hover{
    color: crimson;
    font-weight: bolder;
}

.listitem{
    color: black;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
}

.listitem:hover{
    color: blue;
}


@media screen and (max-width: 500px) {
    #loginmenu{
        grid-gap: 10px !important;
    }

    .listitem{
        font-size: 14px !important;
    }
    
}