* {
    margin: 0;
}

#navbar {
    display: grid;
    align-items: center;
    grid-template-columns: 27% 73%;
    position: sticky;
    height: auto;
    top: 0;
    z-index: 1111;
}

#navbar::before {
    content: '';
    position: absolute;
    background-color: #A3A4AE;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: background-color 1s;
}

#navbar>#icon {
    display: none;
}

#logosection {
    justify-content: left;
    align-items: center;
    display: grid;
    grid-template-columns: 5vw 28vw;
    text-decoration: none;
}


#akalogo {
    position: absolute;
    top: 0.2vw;
    left: 0.2vw;
    height: 7vw;
    width: 8vw;
}

#ambgka {
    text-align: center;
    color: black;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.6vw;
    padding: 0px 5px;
}


#navbar #nav-item {
    list-style: none;
    height: fit-content;
    padding: 0.5% 0vh;
    position: relative;
    display: grid;
    justify-content: right;
    grid-template-columns: repeat(7, auto);
    gap: 1.5vw;
}

#navbar #nav-item a {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    align-self: center;
    text-decoration: none;
    text-align: center;
    color: #282A35;
    font-size: 1.5vw;
    border-radius: 20px;
    padding: 0.4vw 1vw;
    width: max-content;
}

#navbar #nav-item a:hover {
    background-color: #282A35;
    color: #A3A4AE;
}