/*
Name: Ann Shan
Date: 05.03.2018
Section: CSE 154 AF

This index.css page styles the index.html page of a trivia guessing website,
including fonts, colors, and layout.
*/

header {
  background-color: purple;
  color: white;
  padding: 10px;
}

body {
  text-align: center;
  font-family: sans-serif;
}

.hidden {
  display: none;
}

ul {
  border: 1px solid black;
  width: 40%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: auto;
  text-align: left;
}

li {
  padding: 5px;
}

#scorebox {
  border: 1px solid black;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

#startscreen button {
  width: 100px;
  height: 50px;
  font-size: 14pt;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}
