<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0.8rem;
    margin: 1.1rem 0;
}

.profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile p {
    color: var(--color-4);
    font-size: 2em;
    margin-right: 2rem;
}

#profile-selection-button {
    position: relative;
    cursor: pointer;
}

#profile-selection-button::before {
    content: "";
    position: absolute;
    bottom: -30px;
    width: 180px;
    font-size: 0.5em;
    color: var(--color-2);

}

#profile-selection-button:hover {
    filter: invert(58%) sepia(98%) saturate(517%) hue-rotate(41deg) brightness(115%) contrast(119%);
}

#profile-selection-button:hover::before {
    content: "Back to profile selection"
}

.header img {
    width: 5%;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu button {
    padding: 0.2rem 2rem;
    font-weight: bold;
}

.menu img {
    font-weight: bold;
    border-radius: 10px;
    width: 30px;
    filter: invert(58%) sepia(98%) saturate(517%) hue-rotate(41deg) brightness(115%) contrast(119%);
    cursor: pointer;
}

.menu img:hover {
    outline: 1px solid var(--color-2);
}</pre></body></html>