html {
    background-color: #fafafa;
    color: white;
    font-family: "JetBrains Mono", "Andale Mono", "Ubuntu Mono", monospace;
    margin: 2em;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hidden {
    display: none;
}

button {
    display: inline-block;
    padding: 0.5em 2em;
    border-radius: 0.5em;
    box-sizing: border-box;
    color: white;
    background-color: rgb(33, 120, 255);
}

img {
    margin: 0;
    padding: 0;
}

h1, h2 {
    color: rgb(33, 120, 255);
}

h3, h4, h5 {
    color: rgb(45, 54, 78);
    margin-top: 60px;
    margin-bottom: 20px
}

pre {
    min-height: 3em;
    text-align: center;
}


.loader {
    width: 48px;
    height: 48px;
    border: 5px solid rgb(33, 120, 255);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    opacity: 50%;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

code[class*="language-"],
pre[class*="language-"] {
    color: rgb(33, 120, 255);
    font-family: "JetBrains Mono", "Andale Mono", "Ubuntu Mono", monospace;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;

    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;

    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;

    border-radius: 0.5em;

    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection {
    text-shadow: none;
    background: rgb(45, 54, 78);
}

pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
    text-shadow: none;
    background: rgb(33, 120, 255);
}

@media print {
    code[class*="language-"],
    pre[class*="language-"] {
        text-shadow: none;
    }
}

/* Code blocks */
pre[class*="language-"] {
    padding: 1em;
    margin: 0.5em 0;
    overflow-x: scroll;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
    color: white;
    background: rgb(36, 44, 64);
}

:not(pre) > code[class*="language-"] {
    padding: 0.1em;
    border-radius: 0.3em;
    white-space: normal;
}

.token.comment {
    color: #7E8EDA;
}

.token.punctuation {
    color: #7E8EDA;
}

.token.variable {
    color: #E4F3FA;
}

.token.hexcode {
    color: #E4F3FA;
}

.token.constant {
    color: #FFDF9B;
}

.token.keyword {
    color: #7FDAFF;
}

.token.operator {
    color: #7FDAFF;
}

.token.tag {
    color: #FF757F;
}

.token.deleted {
    color: #FF757F;
}

.token.char {
    color: #FF757F;
}

.token.function {
    color: #70B0FF;
}

.token.property {
    color: #70B0FF;
}

.token.builtin {
    color: #FF8A8A;
}

.token.string {
    color: rgb(209, 227, 255);
}

.token.selector {
    color: rgb(209, 227, 255);
}

.token.number {
    color: #FF9668;
}

.token.symbol {
    color: #7AF8CA;
}

.token.inserted {
    color: #7AF8CA;
}

.token.attr-name {
    color: #7AF8CA;
}

.token.changed {
    color: #FFDB8E;
}

.token.regex {
    color: #A6EEFB;
}

.token.important,
.token.bold {
    font-weight: bold;
}

.token.italic {
    font-style: italic;
}
