html {
    height: 100%;
    width: 100%;
    min-width: 800px;
}

body {
  background: url("../img/FFBackground.jpg") black;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  padding: 25px;
}

#mutedImg {
  position: fixed;
  filter: invert(100%) sepia(97%) saturate(14%) hue-rotate(216deg) brightness(103%) contrast(100%);
  height: 50px;
  width: 50px;
}

.gameBoard {
  position: relative;
  font-family: 'finalfantasy';
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
  border: 5px solid #003c7b;
  text-align: center;
  padding: 150px;
  border-radius: 50%;
  max-width: 1000px;
  max-height: 800px;
  min-width: 305px;
  margin: auto;
  background: url('../img/FFCrystal.jpg') #0c4779;
  background-repeat: repeat;
  background-position: center center;
  -webkit-box-shadow: 0 1px 24px 1px rgba(0, 0, 0, 0.48);
  -moz-box-shadow: 0 1px 24px 1px rgba(0, 0, 0, 0.48);
  box-shadow: 0 1px 24px 1px rgba(0, 0, 0, 0.48);
}

.gameBoard .score {
  position: absolute;
  text-align: center;
  margin: auto;
  font-size: 45px;
  height: 50px;
  line-height: 50px;
  width: 75px;
  padding: 20px;
  border: 2px solid white;
  background: black;
  -webkit-box-shadow: inset 0 1px 24px 1px rgba(0, 0, 0, 0.48);
  -moz-box-shadow: inset 0 1px 24px 1px rgba(0, 0, 0, 0.48);
  box-shadow: inset 0 1px 24px 1px rgba(0, 0, 0, 0.48);
}

.gameBoard .score#boardScore {
  height: 75px;
  line-height: 75px;
  width: 125px;
  font-size: 65px;
  left: 0;
  right: 0;
  top: 20px;
}

.gameBoard .score#team1Score {
  left: 10px;
  top: 0;
  bottom: 0;
}

.gameBoard .score#team2Score {
  right: 10px;
  top: 0;
  bottom: 0;
}

.gameBoard .questionHolder {
  width: 94%;
  margin: auto;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 50px;
  color: #003c7b;
  text-shadow: initial;
  text-align: center;
  border: 1px solid black;
  background: #deeeff;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid black;
  -webkit-box-shadow: inset 0 1px 24px 1px rgba(0, 0, 0, 0.48);
  -moz-box-shadow: inset 0 1px 24px 1px rgba(0, 0, 0, 0.48);
  box-shadow: inset 0 1px 24px 1px rgba(0, 0, 0, 0.48);
}

.gameBoard .colHolder {
  background: linear-gradient(to left, #061b2c 0%, #1e5799 50%, #061b2c 100%);
  display: flex;
  padding: 4px;
}

.gameBoard .colHolder>div {
  display: block;
  width:100%;
  -webkit-box-shadow: 0 1px 24px 1px rgba(0, 0, 0, 0.48);
  -moz-box-shadow: 0 1px 24px 1px rgba(0, 0, 0, 0.48);
  box-shadow: 0 1px 24px 1px rgba(0, 0, 0, 0.48);
}

.gameBoard .cardHolder {
  display: inline-block;
  position: relative;
  vertical-align: top;
  height: 50px;
  margin: 4px;
  width: 95%;
  background: black;
  border: 4px solid white;
}

.gameBoard .cardHolder b {
  position: absolute;
  right: 0;
  width: 45px;
  text-align: center;
  border-left: 2px solid darkred;
}

.gameBoard .cardHolder span {
  margin: 10px;
}

.gameBoard .cardHolder>div {
  top: -2px;
  left: -2px;
  margin: 0px;
  padding: 0px;
  position: absolute;
  width: 100%;
  line-height: 100%;
  height: 100%;
  border: 2px solid #003c7b;
  line-height: 50px;
  background-position: center;
}

.gameBoard .cardHolder .back {
  font-size: 40px;
  text-align: left;
  height: 50px;
  line-height: 50px;
}

.gameBoard .cardHolder .front {
  text-align: center;
}

.gameBoard .cardHolder .front span {
  font-size: 30px;
  position: absolute;
  border-radius: 50%;
  line-height: 35px;
  height: 35px;
  width: 45px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  border: 2px solid #003c7b;
}

.gameBoard .cardHolder>div,
.gameBoard .LBG {
  background: darkred;
  transform-style: preserve-3d;
}

.gameBoard .cardHolder>div:empty {
  background:url('../img/Blank.png') goldenrod;
  background-position: center;
}

.gameBoard .score,
.gameBoard .button,
.gameBoard .DBG {
  background: black;
}

.gameBoard .btnHolder {
  position: absolute;
  margin: auto;
  left:0;
  right:0;
  bottom:45px
}

.gameBoard .btnHolder .button {
  cursor: pointer;
  display:inline-block;
  font-size: 35px;
  margin:10px;
  height:50px;
  line-height:50px;
  width:175px;
  border:3px solid white;
  -webkit-box-shadow: 0 1px 24px 1px rgba(0, 0, 0, 0.48);
  -moz-box-shadow: 0 1px 24px 1px rgba(0, 0, 0, 0.48);
  box-shadow: 0 1px 24px 1px rgba(0, 0, 0, 0.48);
}

.gameBoard .btnHolder .button#awardTeam1 {
  border-radius: 50px 0 0 50px;
}

.gameBoard .btnHolder .button#awardTeam2 {
  border-radius: 0 50px 50px 0;
}

@media screen and (min-width: 780px) {
  .gameBoard .colHolder>div{
    display: inline-block;
    width:50%;
  }
}

.strikes {
  position: fixed;
  text-align: center;
  top: 33%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  opacity: 0;
}

.strikes span {
  background-color: black;
  border: 8px solid #C13237;
  color: #C13237;
  font-size: 190px;
  height: 30%;
  margin: 10px;
  width: 200px;
}

.team {
  position: relative;
  font-family: 'finalfantasy';
  font-size: 40px;
  color: gray;
  width: max-content;
  border: 2px solid white;
  background: black;
  padding: 10px;
  margin: auto;
  margin-top: 10px;
  left: 0;
  right: 0;
  min-width: max-content;
}

.team .teamMembers {
  padding-inline-start: 0px;
  margin-block-start: -10px;
}

.team .teamMembers li {
  list-style-type: none;
  width: auto;
  text-align: left;
  float: left;
  margin-right: 15px;
}

#team1Name, #team2Name{
  color: seagreen;
  padding: 0px 10px;
}

li.active {
  /* Goldenrod1 */
  color: #FFC125;
}