html,
body {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: black;
}

body {
  color: rgb(209, 194, 194);
  margin: 0;
  padding: 8px;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

a {
  color: rgb(114, 178, 241);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: rgb(30, 83, 136);
}

label {
  display: block;
}

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

input:disabled {
  color: rgb(61, 56, 56);
}

button {
  color: rgb(255, 255, 255);
  background-color: #7c7c7c;
  outline: none;
}

button:disabled {
  color: rgb(53, 52, 52);
}

button:not(:disabled):active {
  background-color: rgb(255, 255, 255);
}

button:focus {
  border-color: rgb(150, 149, 149);
}
