.code-container {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
    background-color: #292d3e;
    color: #a9b7c6;
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
	font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

h2 {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

code {
    display: block;
    padding-left: 40px;
    border-left: 2px solid #3c3f41;
}

.line-numbers {
    position: absolute;
    top: 20px;
    left: 0;
    padding: 20px;
    padding-right: 10px;
    text-align: right;
    user-select: none;
    color: #616161;
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    line-height: 1.5;
}

.line-numbers span {
    display: block;
    height: calc(14px * 1.5);
}

code .tag {
    color: #e46a73;
}

code .attribute {
    color: #ffcb6b;
}

code .value {
    color: #949bc8;
}

code .punctuation {
    color: #cc7832;
}

code .comment {
    color: #808080;
}

code .arrows {
	color: #7eac98;
}

@media (max-width: 768px) {
    .code-container {
        padding: 15px;
    }
    code {
        padding-left: 35px;
    }
    .line-numbers {
        padding-left: 15px;
    }
}