html {
    background-color: #000;
}

* {
    color: #ccc;
    font-family: "Fira Sans", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.container {
    background-color: #090909;
    border: 2px #fff2 solid;
    box-shadow: 0px 0px 20px 2px #fff1;
    width: 70vw;
    margin: 12px;
    padding: 12px;
    border-radius: 22px;
}

p {
    font-size: 15pt;
}

.code, h1 {
    font-family: "Fira Code", sans-serif;
}

h1 {
    color: #fff;
}

.rounded-left {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.rounded-right {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

button {
    transition: all 150ms ease;
    background-color: #111;
    padding: 5px 12px;
    border: 2px solid #fff1;
    font-family: "Fira Code", monospace;
    font-size: 13pt;
    color: #aaa;
    cursor: pointer;
}

.keybind {
    cursor: pointer;
    font-family: "Fira Code", monospace;
    text-shadow: 0px 0px 5px #fff7;
    font-size: 13pt;
    color: #fff;
}

button:hover {
    color: #fff;
    background-color: #fff3;
    border: 2px solid #fff7;
}

.button-active {
    background-color: #333;
}

ul {
    font-size: 16pt;
    list-style-type: none;
    padding: 5px 0px;
    background-color: #111;
    border-radius: 12px;
}

li::before {
    content: ">  ";
    color: #555;
}

li {
    padding: 2px;
    padding-left: 20px;
}

li.emphasized {
    font-weight: bold;
}

li.emphasized::before {
    content: ">> ";
    color: #aaa;
}

.comment {
    font-size: 10pt;
    color: #fff3;
}

.nice {
    color: #fff5;
    background: #ff5e5e;
    font-size: 13pt;
    font-weight: bold;
    background: linear-gradient(
        52deg,
        rgba(255, 94, 94, 1) 0%,
        rgba(205, 130, 255, 1) 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    display: inline-block;
    transition: all 150ms ease;
    color: #fff;
    font-weight: bold;
    transform: translateY(0px);
    box-shadow: 0px 0px 0px #fff2;
}

a:hover {
    transform: translateY(-4px);
    box-shadow: 0px 0px 20px #fff2;
    background-color: #fff2;
}

.tab-hidden {
    display: none;
}

.bottom-list {
    margin-bottom: 0;
}

#canvas {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
}

.sky-canvas {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
}

.webgl-watermark {
    z-index: -5;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="30" style="font-size: 20px;"><text y="15">✨</text></svg>'), auto;;
    color: #fff2;
    font-family: "Fira Code", sans-serif;
    font-size: 13pt;
    transition: all 350ms ease;
    position: fixed;
    bottom: 10px;
    left: 10px;
}

.webgl-watermark:hover {
    font-size: 17pt;
    color: #fff6;
    text-shadow: 0px 0px 10px #fff5;
}
