/* global  settings*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #fff;
}

body {
  min-height: 100vh;
  background-color: #160109;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* --- index.html --- */
header {
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff1;
  width: 100vw;
}

h1 {
  font-size: 1.5rem;
}

main {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1vw;
  background-color: #0003;
  width: 100vw;
}

footer {
  height: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff1;
  font-size: 0.7rem;
  color: #fff;
  width: 100vw;
}

footer a:any-link {
  text-decoration: none;
  color: #fff;
}

div {
  border-radius: 3px;
}

hr {
  margin: 10px 0;
  border: 0;
  height: 0;
}

label {
  width: 100%;
  font-size: 1.5rem;
}

input {
  color: #000;
  width: 30vw;
  font-size: 1.5rem;
}

button {
  color: #000;
}

button#sendButton {
  height: 50px;
  font-size: 1rem;
  width: 100% !important;
}

.playerSelection {
  width: 80vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

label {
  width: 95%;
  display: flex;
  justify-content: space-between;
  margin: 2vh 0;
}

