#topbar{
    width: 100%;
    height: 8vh;
    margin: 0;
    background-color: var(--main_color);
    display: flex;
    gap: 15px;
}
.topbar-item{
    height: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.topbar-item a{
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 120%;
}
.topbar-item a:hover{
    color: white;
}
