html,
body {
  overflow: hidden;
  margin: 0 !important;
  height: 100%;
  font-family: "XTypewriter-Regular" !important;
  background-color: black !important;
  color: white !important;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 30px;
  background-color: white;
  color: black;
  text-align: center;
}

button {
  -moz-box-shadow: 0px 0px 32px 8px #080808;
  -webkit-box-shadow: 0px 0px 32px 8px #080808;
  box-shadow: 0px 0px 32px 8px #080808;
  background-color: #000000;
  -webkit-border-radius: 50px !important;
  -moz-border-radius: 50px !important;
  border-radius: 50px !important;
  border: 3px solid #ffffff;
  display: inline-block !important;
  cursor: pointer !important;
  color: #ffffff !important;
  font-size: 20px !important;
  padding: 9px 16px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #878787 !important;
}

button:hover {
  background-color: #969696;
}

button:active {
  position: relative;
  top: 1px;
}

.centerGroup {
  text-align: center;
  padding: 5px;
}

.centerGroup button {
  margin-left: 8px;
}

.rightGroup {
  text-align: end;
  /* padding:5px; */
  margin-top: 8px;
  padding-right: 20px;
}

.rightGroup a {
  text-decoration: none;
  color: black;
}

.legendText {
  text-align: start;
  padding:5px;
  margin-top: 8px;
  padding-left: 0px;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.cols {
  display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin:auto;
}

.cols div {
  align-content: center;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: black;
  color: white;
  text-align: center;

  .centerGroup{
    background-color: white;
    color: black;
    font-size: 2em;
  }
}

.msg {
  margin-left: 15px;
  margin-right: 15px;
}

.logo img {
  width: 200px;
  height: 200px;
}


