body {
    padding: 0;
    margin: 0;
}

#chart {
    width: 0;
    height: 0;
    pointer-events: initial;
    position: static;
}

.brand {
    font-size: 32px;
    padding-top: 0.2rem;
    padding-left: 1rem;
    margin: 0;
}

.content {
    display: flex;
    flex-flow: row;
    width: 99vw;
    gap: 2rem;
    max-width: none;
    padding-bottom: 0;
}

.menu {
    flex-basis: 300px;
    min-width: 300px;
    display: flex;
    flex-flow: column;
    gap: 0.5rem;
    border-right: 2px solid #996bef;
    padding: 0;
    max-height: 100vh;
    background-color: rgb(51, 51, 51);
    max-height: none;
}

.menu-entry {
    display: flex;
    flex-flow: column;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
}

.menu-entry:hover {
    background-color: rgb(80, 80, 80);
    color: #ba9cff;
}

.menu-entry.selected {
    color: #996bef;
    background-color: rgb(60, 60, 60);
}

.text-container, .intro-container {
    margin: 2rem;
    background: rgb(51, 51, 51);
    padding: 2rem;
    border: 2px solid #996bef;
    border-radius: 8px;
    max-width: 1100px;
}

.canvas-container {
    width: 800px;
    height: 800px;
    max-height: 1000px;
    margin: 2rem;
    background: rgb(51, 51, 51);
    padding: 2rem;
    border: 2px solid #996bef;
    border-radius: 8px;
}

#map-canvas {
    z-index: 2;
    position: static;
    width: 100%;
    height: 100%;
    pointer-events: initial;
}


.header {

    background: rgb(51, 51, 51);
    border-bottom: 2px solid #886bef;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem 0 00;
    align-items: center;
}

.little-link {
    margin-left: auto;
    margin-right: 0.5rem;
    font-size: 0.75rem;
}