:root {

    --font: #ffffff;
    --background: #006400;
}

*{
    font-family: 'URW Gothic', sans-serif;
}

html, body {
    background-color: var(--background)
}

h1, h2 {
    color: var(--font);
}


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

.inputBox {
    width: 30em;
    height: 3em;
    border-radius: 1em;
    margin-top: 1em;
}

