:root {
    --header-height: 70px;
    --footer-height: 50px;
    --dark-background: #F4B042;
    --background-color: #fbe6a3;
}

* {
    box-sizing: border-box;
}

html, body {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 320px;
    background: var(--background-color);
}

body > main {
    min-height: 100vh;
}

body {
    color: #232323;
    margin: 0 0 50px;
    font-family: Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

a {
    color: #232323;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #232323;
}

label {
    display: block;
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    padding: 0.4em;
    margin: 0 0 0.5em 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 2px;
}

input:disabled {
    color: #ccc;
}

.button-holder {
    width: fit-content;
    margin: 12px auto;
}
