#streaming
{
  color: green;
}

#nameField
{
  height: 40px;
  width: 200px;
  font-size: larger;
}

#nameButton
{
  height: 50px;
  width: 150px;
}

#bases
{
  background-color: brown;
  width: 500px;
  height: 200px;
  position: relative;
}

#firstBase
{
  position: absolute;
  right: 10px;
  top: 100px;
}

#secondBase
{
  position: absolute;
  left: 225px;
  top: 20px;
}

#thirdBase
{
  position: absolute;
  top: 100px;
  left: 10px;
}

button
{
  width: 300px;
  height: 100px;
  font-size: 28px;
  margin: 20px;
}

#heading
{
  position: relative;
}

#info
{
  position: absolute;
  font-size: 20px;
  left: 525px;
  top: 0px;
}

input[type='checkbox']
{
  -webkit-appearance: none;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 5px;
  border: 2px solid #555;
}

input[type='checkbox']:checked
{
  background: goldenrod;
}

h3, span
{
  font-size: 36px;
  display: inline;
}

.hidden
{
  visibility: hidden;
}