:root {
    --color-white: #ffffff;
    --color-red: #ff0000;
    --color-error: #ff1e1e;
    --color-success: #5eba7d;
    --color-text: #636b6f;
    --color-link: #636b6f;
    --color-link-active: #1976d2;
    --color-selected-item: #095796;
    --color-app-background: #f3f3f3;
    --color-button-background: #1976d2;
    --color-button-background-hover: #2986e2;
    --color-app-border: #cccccc;
    --font-family: 'Roboto', sans-serif;
}

html, body {
    background-color: var(--color-app-background);
    color: var(--color-text);
    font-family: var(--font-family);
    font-weight: 100;
    height: 100vh;
    margin: 0;
}

.color-error {
    color: var(--color-error);
}

.color-success {
    color: var(--color-success);
}

.debug-console {
    display: none;
    border: 2px solid var(--color-red);
    text-align: left;
    margin: 1rem;
    padding: 0 1rem;
}

.full-height {
    height: 100vh;
}

.flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
}

.position-ref {
    position: relative;
}

.top-right {
    position: absolute;
    right: 10px;
    top: 18px;
}

.content {
    text-align: center;
}

.title {
    font-size: 84px;
    margin-bottom: 30px;
}

.links > a {
    color: var(--color-link);
    padding: 0 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1rem;
    text-decoration: none;
    text-transform: uppercase;
}
