html,
body {
  position: fixed;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
}

body {
  -webkit-tap-highlight-color: rgb(255, 255, 255, 0.5);
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #001220;
  margin: 0 auto;
  font-family: 'Exo 2', sans-serif;
  color: white;
  font-size: calc(10px + 2vmin);
 
}

a {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: rgb(0, 80, 160);
}

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: #ccc;
}

button {
  color: #333;
  background-color: #f4f4f4;
  outline: none;
}

button:disabled {
  color: #999;
}

button:not(:disabled):active {
  background-color: #ddd;
}

button:focus {
  border-color: #666;
}
