body {
  font-family: monospace;
}

h1 {
  font-size: 7em;
  margin: 1.2em 0 1em 0;
  text-align: center;
}

h2 {
  font-size: 2em;
  text-align: center;
}

h3 {
  font-size: 1.5em;
  text-align: center;
}

form {
  text-align: center;
}

#start {
  text-align: center;
}

#start form {
  margin-bottom: 5em;
}

#start input {
  margin: 0.3em;
}

#lobby {
  text-align: center;
}

#lobby h2 {
  margin: 4em 0 1.5em 0;
}

#lobby ul {
  margin: 1em auto 5em auto;
}

#lobby li {
  line-height:1.7;
}

#letterMoveTable {
  width: 100%;
  height: 400px;
}

.movableLetter {
  padding: 3.5%;
  position: absolute;
  background: #f0f0f0;
  border: 4px solid #444;
  border-radius: 15%;
  cursor: pointer;
}

.movableLetter p {
  font-size: 4vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  -webkit-user-select: none;        
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#wordinputform {
  text-align: center;
}

#wordinput {
  font-family: monospace;
  font-size: 4em;
  letter-spacing: 5px;
  padding:10px;
  text-align: center;
}

#wordsubmit {
  font-size: 2em;
}

#playersList {
  width: 40%;
  margin: 5em auto;
  text-align: left;
}

#playersList li {
  line-height: 1.7;
}

#playersList select {
	margin-left: 10em;
}

#reveal {
  width: 40%;
  margin: 1em auto;
  text-align: left;
}

#scoreboard {
  position: fixed;
  top: 0;
  right: 0;
  border: 1px solid #444;
  border-width: 0 0 1px 1px;
  padding: 10px 15px 10px 10px;
}

#scoreboard th {
  padding-bottom: 5px;
}

.spoiler {
  display: none;
}

.show {
  display: none; 
}

.hide:target + .show {
  display: block; 
}

.hide:target {
  display: none; 
}

.hide:target ~ .spoiler {
  display: block;
}

@media only screen and (max-width: 1200px) {
	#playersList {
		  width: 60%;
  }
}

@media only screen and (max-width: 800px) {
	#playersList {
		  width: 80%;
  }
}
