:root {
    --Color: white;
    --BackgroundClr: #AF9DBE;
    --titlePad: 14px;
}

@font-face {
    font-family: C64;
    src: url("font/C64_Pro_Mono-STYLE.otf");
}

body {
    background-color: var(--BackgroundClr);
}

h1 {
    margin-bottom: var(--titlePad);
    margin-top: var(--titlePad);
    margin-left: auto;
    margin-right: auto;
}

textarea {
    background-color: white;
    font-family: "C64";
    resize: none;
    overflow: hidden;
    border: 4px solid black;
    border-radius: 10px;
    padding: 8px;
    margin-left: auto;
    margin-right: auto;
}

input {
    color: black;
}

textarea::-webkit-scrollbar {
    display: none;
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}

.dashboard {
    margin-left: auto;
    margin-right: auto;
}

#Buttons {
    flex-wrap: wrap;
    max-width: 380px;
    width: 100%;
}

#Buttons, .settings {
    max-width: 450px;
    padding: 8px;
    background-color: var(--Color);
    border: 3px solid black;
    border-radius: 3px;
    gap: 10px;
}