@font-face {
    font-family: "JetBrainsMono";
    src: url("./JetBrainsMono/JetBrainsMonoNerdFont-Regular.ttf") format("truetype");
}

* {
    font-family: inherit;
}

html {
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
    position: relative;
    font-family: "JetBrainsMono";
    background: #1e1e2e;
}

canvas {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -999;
}

#export-viewer {
    display: none;
    position: absolute;
    width: 400px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #313244;
    border-radius: 10px;
    padding: 20px;
    overflow-wrap: break-word;
    overflow-y: auto;
}

#save-text {
    font-size: 12px;
    color: #cdd6f4;
}
