#navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 30px;
    padding: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    border-radius: 25px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    z-index: 1000;
}

.navlink {
    position: relative;
    display: inline-block;
    font-weight: bold;
    font-size: 1.25rem;
    padding: 7.5px;
    text-decoration: none;
    color: white;
    background-color: transparent;
    border: none;
    border-radius: 10px;

    transition: transform 0.2s ease, font-weight 0.2s ease, text-shadow 0.2s ease, background-color 0.3s ease;
}

.navlink:hover {
    transform: scale(1.2);
    font-weight: bolder;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.75), 0 0 2px rgba(255, 255, 255, 0.5), 0 0 3px rgba(255, 255, 255, 0.25);
}