#top-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;

    border-bottom: 3px solid var(--orange);
    background: var(--dark-blue);

    height: 6rem;
    width: 100%;

    overflow: hidden;
}

#logo {
    transform: scale(2);
    left: 3rem;
    margin-top: 1.4rem;
    width: 16rem;
}

#left-menu-list {
    display: flex;

    position: absolute;
    top: 1.75rem;
    left: 15rem;
    width: fit-content;

    list-style-type: none;
    z-index: 20;

    font-weight: 600;
}

#right-menu-list {
    display: flex;

    position: absolute;
    top: 1.5rem;
    right: 2rem;
    width: fit-content;

    list-style-type: none;
    z-index: 20;

    font-weight: 600;
}

#burger-menu-btn {
    visibility: hidden;
    z-index: 0;
}

.menu-icon {
    color: var(--orange);
    margin-right: 1rem;
    cursor: pointer;
}

.sign-icon {
    color: var(--light-blue);
    margin-top: -0.6rem;
    cursor: pointer;
}

#sign-up-icon {
    margin-top: -1.5rem;
    text-align: center;

    background: var(--orange);
    padding: 0.4rem 1.5rem;
    border-radius: 25px;
}

#sign-up-icon a {
    color: var(--dark-blue);
}

.right-menu-button {
    font-weight: 10;
    margin-right: 1rem;
    margin-top: 0.25rem;
    cursor: pointer;
}

.right-menu-button a {
    color: var(--light-blue);
}

#sign-in-key {
    position: relative;
    top: -0.7rem;
    width: 2rem;
    height: 2rem;
    left: -3.5rem;
}
