body {
    background: black;
    color: #bbb;
    padding: 0;
    margin: 0;
    font-family: serif;
    font-size: 1em;
}

#root {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.half {
    display: grid;
    align-items: center;
    justify-items: center;
    width: 50%;
    height: 100%;
}

.output {
    justify-items: left;
}

.word {
    width: 14em;
}

button {
    background: #222;
    aspect-ratio: 1;
    font-size: 3em;
}

select {
    background: #222;
    color: #bbb;
    border: 1px solid #111;
    font-size: 1.5em;
    border-radius: 0.5em;
    padding: 0.4em;
    margin: 0.25em;
}

#panel_contents {
    text-align: center;
}

#output_contents {
    font-size: 2em;
}

@media screen and (orientation:portrait) {

#root {
    flex-direction: column;
}

.half {
    width: 100%;
    height: 50%;
}

.output {
    align-items: start;
    justify-items: center;
}

}
