:root {
    --font-size-0: 14.4px;
    --font-size-1: 18px;
    --font-size-2: 22.5px;
    --font-size-3: 28.13px;
    --font-size-4: 35.16px;
    --font-size-5: 43.95px;
    --background-color: #333333;
    --button-color: #555555;
    --border-color: #222222;
    --text-color: #eeeeee;
    --error-color: #ee3333;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, serif;
    font-size: var(--font-size-1);
    background: var(--background-color);
    color: var(--text-color);
}

p {
    margin: 0.5em 0;
}

.link {
    color: var(--text-color);
}

input[type=text], button, .button {
    background-color: var(--button-color);
    border: 1px solid var(--border-color);
    border-radius: 0.25em;
    color: var(--text-color);
    padding: 0.25em 0.5em;
    font-size: var(--font-size-1);
    box-sizing: border-box;
}

button, .button {
    user-select: none;
    cursor: pointer;
}

code {
    background-color: var(--text-color);
    color: var(--background-color);
    padding: 0.5em 1em;
    border-radius: 0.5em;
    margin: 1em 0;
    display: block;
    text-indent: 0;
}

.content_holder {
    max-width: 600px;
    width: 90%;
    margin: 32px auto 0;
}

.text {
    text-align: justify;
    text-indent: 1.5em;
    margin-bottom: 32px;
}

.text-center {
    text-align: center;
    margin-bottom: 32px;
}

.buttons_holder {
    display: flex;
    justify-content: space-around;
}
