.top-bar {
    top: 0;
    display: flex;
    z-index: 1;
    justify-content: right;
    height: 90px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    justify-content: left;
    width: 30vh;
    padding-top: 0.5rem;
}

.top-bar-right {
    margin-top: -70px;
    margin-right: 0;
    position: fixed;
    z-index: 2;
    cursor: pointer;
    transition: margin-top 0.2s ease-in-out;
}

.top-bar-right a {
    font-size: 3rem;
    font-family: 'Sono', Sans-Serif;
    font-weight: 500;
    padding: 1rem;
    color: black;
    text-decoration: none;
    border-radius: 0 0 0 3px;
    background-color: white;
}

@media screen and (max-width: 750px) {
    .top-bar-right a {
        font-size: 1.5rem;
        text-align: left;
    }

    .top-bar-right {
        right: 0;
    }
}