.navbar {
    position: fixed;
    height: 60px;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
.navbar-spacer {
    display: flex;
    height: 60px;
}
.navbar-title {
    color: black;
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
}
.navigation {
    width: 50%;
    display: flex;
    justify-content: center;
    gap: 50px;
}
.nav-button {
    text-decoration: none;
    font-size: 16px;
    text-wrap: none;
    white-space: nowrap;
    min-width: min-content;
    color: black;
}
.nav-button:hover {
    cursor: pointer;
}