@font-face {
  font-family: Work Sans;
  src: url(legacyfont.ttf);
}

.nojs-moreinfo {
  display: none;
}
.nojs-loading-message {
  display: block;
}
.nojs-nomodules-message {
  display: none;
}

.nojs-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #353434;
  color: white;

  text-align: center;
  font-family: Work Sans;
  font-weight: 400;

  overflow: auto;
}
.nojs-title {
  font-weight: 700;
  margin-top: 1em;
}
.nojs-flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;

  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center; /* ie 10 */
  justify-content: center;
}
.nojs-flex-column {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  -webkit-box-orient: vertical; /*ie10*/
  flex-direction: column;
}
.nojs-whitebox {
  width: auto;
  background-color: white;
  color: black;
  padding: 20px;
  border-radius: 12px;
  font-weight: 600;
}
.nojs-whitebox.redborder {
  border: 4px solid #dc3545;
}
.nojs-button {
  border: 1px transparent;
  border-radius: 8px;
  padding: 4px 10px 4px 10px;
  min-height: 32px;
  line-height: 16px;

  background-color: white;
  color: black;
  font-family: Work Sans;
  font-weight: 700;
}
