

#header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    padding-bottom: 10px;
}

#headerBackButton > svg{
    width: auto;
    height: 60px;
    cursor: pointer;
}

#headerBackButton > svg:hover {
    transform: scale(1.1);
    transition: transform 0.3s;
}

#subHeader {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#header  h1 {
    margin: 0;
    padding: 0;
    font-size: clamp(2.5rem, 7vw, 3.5rem);
    font-weight: 900;
    color: var(--text-color);
    background-color: var(--background-color);
    user-select: none;
}