/* style.css */

:root {
  background: #111111ff;
  color: #efefefff;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  font-size: 25px;
  font-size: calc( 7px + 1vw );
}

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

a {
    color: currentColor;
    outline: none;
    text-decoration: none;
}

a:focus { outline: 1px dotted currentColor; }

a:hover { text-decoration: underline; }

body {
  background-color: black;
  color: white;
  margin: 0;
  min-height: 100vh;
  width: 100%;
}

body > header {
  align-items: center;
  background-color: #ff9900ff;
  background-image: linear-gradient( to right, #ffaa00ff, #ff9900ff );
  display: flex;
  flex-flow: row nowrap;
  justify-content: stretch;
  margin: 0;
  padding: 0;
}

body > header > * {
  flex: 1 0 auto;
  height: 2em;
  line-height: 2em;
  text-align: center;
}

body > header a:hover {
    background-color: #ffffff33;
}

form {
    background-color: #ffffff11;
    border: 1px solid white;
    margin: 1em auto;
    max-width: 40em;
    text-align: center;
}

form > p {
    margin: .5em auto;
    text-align: center;
}

input {
    border: 1px solid white;
    color: white;
    padding: .125em;
}

input[type=button], input[type=reset], input[type=submit] {
    padding: .5em 1.5em;
}

label {
    margin-right: 1em;
}

table {
    border: 1px solid currentColor;
    border-collapse: collapse;
    font-family: 'Fira Code', 'Source Code Pro', monospace;
    margin: 1em auto;
    max-width: 50em;
    width: 100%;
}

td, th {
    padding: .125em;
    word-wrap: break-word;    
}

tr {
    border-bottom: 1px solid #ffffff33;
}

/* eof - style.css */
