@import url('fonts/open-sans.css');
@import url('fonts/roboto.css');

:root {
    --primary-color: #ac3939;
    --secondary-color: tomato;
    --accent-color: gray;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    margin-bottom: 0.5em;
    margin-top: 0.5em;
}

body {
    height: 100vh;
    font-size: 1em;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-family: "Roboto", "Open Sans", Helvetica, Arial, sans-serif;
    background: #eee;
}

div#center {
    max-width: 400px;
    max-height: 300px;
    color: white;
    text-align: center;
    flex: 1;
    border: 1px solid #bbb;
    border-radius: 4px;
}

label, .label {
    font-weight: bold;
    color: var(--secondary-color);
    margin-right: 10px;
}

input {
    line-height: 1.5em;
    font-size: 11pt;
    padding: 5px;
    margin-bottom: 5px;
}

button, a.button, .button, input[type='submit'] {
    display: inline-block;
    line-height: 1em;
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 5px;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    margin-left: 5px;
}

a.button:hover {
    text-decoration: none;
    color: white;
}

a.button:visited {
    color: white;
}

button:focus, .button:focus {
    outline: 0;
}

button:active, .button:active {
    transform: translate(1px, 1px);
}

textarea, .textarea {
    font-family: monospace;
    line-height: 1.2em;
}