.menu-bar {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin-top: -55px;
    margin-bottom: 3rem;

    .menu-item {
        color: white;
        text-decoration: none;
        text-align: left;

        background-color: var(--retro-blue);
        max-height: 75px;
        max-width: 260px;
        border-radius: 8px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 26px;
        padding: 14px 24px;
        border: 1px solid rgba(255, 255, 255, 0.25);

        .text-container {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .title {
            font-size: 1.05rem;
            font-weight: bold;
        }

        .desc {
            font-size: 0.65rem;
            font-weight: 300;
        }

        img {
            height: 36px;
        }
    }
}
