nav {
    display: flex;
    /* width: 100%; */
    padding: var(--padding-nav);
    height: var(--height-nav);
    align-items: center;
	color: white;
    background-color: var(--color-main);
    justify-content: space-between;
}

nav .logo-section {
    /* font-weight: bold; */
    font-size: 1.25rem;

    display: flex;
    align-items: baseline;
    height: 100%;
}

nav .logo-section .logo {
    font-family: 'lobster two';
    font-weight: bold;
}

#creation-save-field .inline-icon {
    margin-left:0.5rem;
}

.cursor-copy {
    cursor: copy;
}

.cursor-pointer {
    cursor: pointer;
}