@font-face {
  font-family: 'Bellweather Sans';
  src: url(BellweatherSans-Regular.ttf)
}

html, body {
  height:100vh;
  margin:0;
  background-color: rgb(1, 0, 43);
  font-family:'Bellweather Sans';
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  margin-top: 0;
}

div.center {
  color: #222;
  padding: 3vmin;
  background-color: #fdfdfd;
  width:fit-content;
  height:fit-content;
  border-radius: 2vmin;
}
.notes {
  font-size: small;
}
input#code {
  padding:0.3rem;
  border-style: solid;
  border-radius: 0.2rem;
  border-collapse: collapse;
  border-color: #bbb;
  border-width: 0.14rem;
  box-sizing: border-box;
}

input#code:focus { 
  border-color:#4a4aeb;
}
button[type=submit] {
  padding:0.3rem 0.5rem;
  border: none;
  border-radius: 0.2rem;
  box-sizing: border-box;
  background-color: #4a4aeb;
  color:#fff;
  font-weight: bold;
  height:100%;
}
div.hidden {
  display: none;
}