html, body {
    color: white;
    background-color: #292B30;
    font-family: -apple-system-font, BlinkMacSystemFont, "Segoe UI", "Roboto", Helvetica Neue, Helvetica, Arial, sans-serif;
    margin: 0;
}

.outer-container {
    height: 100dvh;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 75dvw;
    max-height: 75dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3vmin;
}

h1 {
    font-size: 3vmin;
}

.title-container {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: flex-start;
    padding: 0vmin 3vmin 0vmin 3vmin;
    gap: 3vmin;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 1.5vmin;
}

.title-container h1 {
    margin: 1.5vmin;
}

.output-container {
    background-color: #1A1A1A;
    border-radius: 2.5vmin;
    font-size: 2.5vmin;
}

.output-container ul {
    list-style: none;
    padding: 0vmin 2.5vmin 0vmin 2.5vmin;
}

.output-container li {
    margin: 2.5vmin;
}

.code {
    font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
    font-weight: 400;
}

.code-list li {
    margin: 0.5vmin;
    white-space: pre;
}

.outlined {
    border: 1px solid #424348;
    box-shadow: inset 0vmin 0vmin 1.5vmin rgba(0, 0, 0, 0.5);
}

.underline {
    text-decoration-line: underline;
}

.bold {
    font-weight: 700;
}

.highlightable:focus,
.highlightable:hover {
    box-shadow: 0vmin 0vmin 0.15vmin #007BFF, inset 0vmin 0vmin 1.5vmin rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.125s ease-in-out;
}

.comment {
    color: #6C7986;
}

.function-1 {
    color: #A167E6;
}

.function-2 {
    color: #67B7A4;
}

.keyword {
    color: #FC5FA3;
}

.line-number {
    color: #7C7D80;
}

.link {
    color: #5482FF;
}

.string {
    color: #FC6A5D;
}

.icon {
    display: inline-block;
    width: 1.25em;
    text-align: center;
}

.type-1 {
    color: #D0A8FF;
}

.type-2 {
    color: #9EF1DD;
}
