:root {
    --primary: ;
    --secondary: ;
    --heading-1: #e0e0e0;
    --heading-2: #c0c0c0;
    --heading-3: #a0a0a0;
    --text-1: #d0ffff;
    --text-2: #eeffff;
    --accent-1: #6090c0;
    --accent-2: #cccccc;
    --background-1: #303030;
    --background-2: #505050;
    --headerfooter: #35424a;
    --button: #355575;
    --button-hover: #45a0a0;
}

html {
    display: flex;
    justify-content: center;
}

body {
    width: 80ch;
    align-self: center;
    font-family: Arial, sans-serif;
    background-color: var(--background-1);
    color: var(--text-1);
}

header {
    background: var(--headerfooter);
    color: var(--heading-1);
    padding: 20px 0;
}

#header-leftside {
    text-align: center;
    margin-left: 10%;
    width: 70%;
}

#header-rightside {
    float: right;
    position: relative;
    width: 20%;
    right: -5%;
    top: -40px;
    padding-left: 15%;
}

img {
    max-width: 40px;
    max-height: 40px;
}

h1 {
    margin: 0;
    color: var(--heading-1);
}

h2 {
    padding-top: 1rem;
    color: var(--heading-2);
}

h3, h4, h5, h6 {
    color: var(--heading-3);
}

main {
    padding: 20px;
}

section > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
    padding-left: 2em;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

select {
    width: 15ch;
    padding: 10px
}

input[type="text"] {
    width: 40ch;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid var(--accent-2);
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
}

button {
    background: var(--button);
    color: var(--text-2);
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background: var(--button-hover);
}

.results {
    margin-top: 20px;
}

.result-item {
    background: var(--background-2);
    border: 1px solid var(--accent-2);
    padding: 10px;
    margin: 5px 0;
    border-radius: 4px;
}

pre {
    white-space: pre-wrap;
}

footer {
    background: #35424a;
    color: var(--text-2);
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
