html, body {
    background: #222530;

    margin: 0;
    padding: 0;

    overflow-y: scroll;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

body::-webkit-scrollbar {
    display: none;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #222127;
}

ul li {
    float: right;
}

ul li a {
    display: block;
    color: #dfaf47;
    text-align: center;
    padding: 20px 20px;

    text-decoration: none;
    font-weight: bold;
    font-family: verdana;
}

#Home:active {
    text-decoration: underline #dfaf47;
}

#Interpreter:active {
    text-decoration: underline #dfaf47;
}

#Tutorial:active {
    text-decoration: underline #dfaf47;
}

#About:active {
    text-decoration: underline #dfaf47;
}

.Tutorial {
    font-family: arial;
    font-weight: bold;
    color: white;
    margin: 15px;
}

pre {
    background-color: #31313b;
    font-family: monospace;
    color: #dfaf47;

    padding: 5px;
    margin: 5px;

    width: 200px; /* Hier denselben Wert wie die Textarea eingeben, aber musst Textareo oder #code finden */

    border-radius: 5px;
}

label {
    font-size: 40px;
    font-family: verdana;
    font-weight: bold;
    color: #dfaf47;
}

p {
    color: #c5c5c5;
    font-family: arial;
    font-size: 15px;
    margin: 15px;
}

b {
    font-weight: bold;
    color: #dfaf47;
}

#example {
    background-color: #31313b;
}