:root {
    --bg_h: #1d2021;
    --bg:   #282828;
    --bg_s: #32302f;
    --text_color:  #fbf1c7;
    --red:    #fb4934;
    --green:  #b8bb26;
    --yellow: #fabd2f;
    --blue:   #83a598;
    --purple: #d3869b;
    --aqua:   #8ec07c;
    --gray:   #928374;
    --orange: #fe8019;
    font-family: 'Roboto Mono', monospace;
    font-size: 1.5rem;
    overflow: hidden;
}

body {
    color: var(--text_color);
}

select,
input {
    background-color: var(--bg_h);
    color: var(--text_color);
    border: var(--green) solid 5px;
    outline: none;
    font-size: 1rem;
    border-radius: 100vh;
    text-align: center;
    margin: 0.25rem;
    transition: 250ms;
    padding: 1%;
}

#input-form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: stretch;
}

.label-input-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

hr {
    width: 100%;
    color: var(--text_color);
}

select:focus-within,
input:focus {
    border-color: var(--red);
}

#output-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#output {
    margin: 1%;
    padding: 1%;
    border: var(--blue) 5px solid;
    border-radius: 100vh;
}