body {
    font-family: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-size: 0.875rem;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 2vh;
    color: gray;
    margin: 0;
    height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.anchorPoint {
    background-color: black;
    border-radius: 50%;
}
.anchorPoint:hover {
    background-color: #9e9e9e;
    cursor: pointer;
}
#app {
    display: flex;
    flex: 1;
    min-height: 0;
}
#leftPanel {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#rightPanel {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 70px), transparent);
    mask-image: linear-gradient(to bottom, black calc(100% - 70px), transparent);
}
#content {
    display: flex;
}
a {
    color: black;;
    text-decoration: none;
}
a:visited {
    color: black;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
footer {
    margin-left: 3rem;
    margin-bottom: 1rem;
}
#footerText {
    width: 320px;
    overflow-wrap: break-word;
}
#instructions {
    font-size: 1rem;
}
#concept {
    font-size: 0.75rem;
}
#credits {
    font-size: 0.75rem;
}
#backToTop {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
    background: white;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
#backToTop.visible {
    opacity: 0.6;
    pointer-events: auto;
}
#backToTop.visible:hover {
    opacity: 1;
}
#mobileWarning {
    display: none;
    padding: 1em;
    background:#FFFBDA;
    font-size: 3rem;
    border-radius: 2rem;
    color: #5a5a5a;
}
