/*General styling, displayed on all pages at all times*/

body{
  background-color: #FFC0CB;
}

h1, h4, .title {
  text-align: center;
}

/*Game Zone Home Page*/

img {
  max-width: 100%;
  height: auto;
}

#mainNav {
  font-size: 30px;
  padding: 10px;
}

.backToLS {
  font-size: 20px;
}

hr {
  width: 50%;
  margin-left: 0;
  border: 5px black solid;
}

#mainNav a:link, #mainNav a:visited {
  color: #9666D3;
}

#mainNav a:hover, #mainNav a:active {
  color: #00CDFA;
  text-decoration: none;
}

/*Both Games*/

#endgame {
  display: none;
}

.item, .droptext {
  padding: 5px 16px;
  margin: 0px;
}

.item {
  font-weight: bold;
}

.item a:link, .item a:visited, .item a:hover, .item a:active {
  color: black;
  text-decoration: none;
}

.item:hover {
  background-color: #E38DD1;
}

.optionContainer {
  position: relative;
  display: inline-block;
}

#options, #navigation {
  min-width: 200px;
}

#options, #rules, #navigation {
  display: none;
  position: absolute;
  background-color: #B851A3;
  box-shadow: 0px 10px 25px 0px rgba(95, 0, 24, 0.562);
  z-index: 1;
}

.optionContainer:hover #options, .optionContainer:hover #navigation, .optionContainer:hover #rules {
  display: block;
}

/*Tic Tac Toe Styling*/

table td {
  text-align: center;
  margin: 10px;
  padding: 10px;
  width: 60px;
  height: 60px;
}

.tictachorizontal {
  border-bottom: 5px solid #000000;
}

.tictacvertical {
  border-left: 5px solid #000000;
}

/*Pig Dice Styling*/

#rules {
  min-width: 500px;
}

#twoDiceRules {
  display: none;
}

.theDie {
  display: inline-block;
  background-color: #FAFADA;
  border: 2px solid #000000;
  border-radius: 5px;
  padding: 3px 5px 3px 5px;
  margin: 0;
}

#theSecondDie {
  display: none;
}

.turnList {
  list-style-type: none;
  text-indent: -25px;
  padding: 0 0 0 30px;
}

#trueturn {
  background-color: #ff7ad7;
}

#falseturn {
  background-color: #ffa2c6;
}

#controls {
  display: none;
}
