body {
  background-color: rgba(60,170,213,1);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: rgb(17, 15, 15);
  text-align: center;
}

header {
  background-color:rgb(60,170,213,1);
  width: 1150px;
  height: 160px;
  text-align: center;
  font-size: 25px;
  float: center;
  padding-left: 5px;
  margin: 0 auto;
}

header > img {
  width: 100px;
  margin-top: 10px;
  margin-left: 10px;
  float: left;
  border-radius: 8px;
}

@font-face {
  font-family: wheelOfFortune;
  src: url("../fonts/SF_Fortune_Wheel_Extended_Italic.ttf");
}

h1 {
  color: white;
  width: auto;
  text-align: center;
  font-family: wheelOfFortune;
  font-size: 100px;
  text-shadow: 3px 7px black;
  border: 5px solid rgb(255, 255, 255);
  padding: 30px
}

h2 {
  
}

h4 {
  padding-bottom: 20px;
}
header{
  margin-bottom: 10%;
}

header > nav {
  
  margin-top: 5%;
  float: center;  
}

header > nav > ul > li {
  display: inline-block;
  width: 220px;
  border: 10px solid black;
  background-color: rgb(250,204,4,1);
  text-align: center;
  border-radius: 15px;
  margin-right: 30px;
  padding: 5px;
  text-decoration: none;
  margin-bottom: 0px;
  
}

li:hover > a {
  background-color:rgb(250,204,4,1);
}

header > nav > ul > li > a {
  color: inherit; 
  color: black;
  text-decoration: none;
  padding-bottom: 10px;
  font-family: wheelOfFortune;
}

main > section > img {
  width: 525px; 
  border: 5px solid black;
  padding: 0px;
  float: center;
  /* margin: 0 auto; */
  border-radius: 10px;
  margin-right: 0px;
  margin-top: 20px;
  box-shadow: 10px 10px 5px grey;
}

main > section > ol > li {
  width: 600px;
  text-align: center;
  float: center;
  margin: 0 auto;
}

footer {

  text-align: center;
  padding: 10px;
  font-style: italic;

}

main > article {
  padding: 10px;
}

main > article > img {
  border: 5px solid black;
  padding: 1px;
  float: center;
  margin: 0 auto;
  border-radius: 10px;
  margin-right: 100px;
  margin-left: 100px;;
  box-shadow: 10px 10px 5px grey;
  border-radius: 50%;
}

main > article > p {
  display: inline-block;
  width: 900px;
  border: 10px black;
  border-color: black;
  text-align: center;
  padding: 20px;
  /* margin: 0 auto; */
  border-radius: 8px;
  margin-right: 10px;
  font-size: 24px;
  margin-top: 30px;
  background-color: rgba(53,160,137,.5);
}

main > article > p > a {
  text-decoration: none;
}



/* -----------------This section for changes to game.html------------------- - Mike*/
/*this is for gameboard table*/
.totalScore{
  position: fixed;
  left: 40px;
  top: 20px;
  font-size: 50px;
  font-weight: bold;

}

#letters {
  list-style:none;
  width:120px;
  height:170px;
  font-size: 140px;
  font-weight: bold;
  align-items: center;
  text-align: center;
  border-style: solid;
  background-color: white;
  border-width: 10px 10px 10px 10px;
}
#gameBoard{
  background-color: rgb(0, 167, 111);
  margin-left:auto; 
  margin-right:auto;
  border-spacing: 5px;
}

/*for headlines and text*/
#transitionAlert{
  font-size: 70px;
  color:white;
  text-shadow: 3px 3px black;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}

#category{
  font-size: 48px;
  color:white;
  text-shadow: 3px 3px black;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}


/* -----------------This section for changes to High_Score.html------------------- - Mike*/
/* High Score Page */

#highScoreTable {
  border: 7px solid black;  
  margin-left: auto;
  margin-right: auto;
  background-color: rgb(53,160,137,1);
  text-align: center;
}

.hiscoreTh {
  border: 3px solid rgb(217, 255, 0);
  font-size: 45px;
  width: 450px;
  height: 60px;
  color: white;  
  text-shadow: 2px 2px black;
}

tr:hover {background-color: lightgreen
}

.hiscoreCell {
  border: 3px solid rgb(217, 255, 0);  
  font-size: 45px;
  width: 450px;
  height: 60px;
  color: white;  
  text-shadow: 2px 2px black;
}


