* {
  box-sizing: border-box;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin:0 auto;
  padding:0;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10+ and Edge */
  user-select: none; /* Standard syntax */
}
  
html, body {
  color: white;
  height: 100%;
  margin: 0; 
}
  
.full-height {
  height: 100%;
  background: black;
  padding:.5%; 
}
  
#game-container {
  background: none;
  position: relative;
  height: 872px;
  left: 50%;
  margin: 0;
  max-height: 99%;
  max-width: 99%;
  top:50%;
  transform: translate(-50%, -50%);
  width: 1810px;
}

.tray-left {
  float: left;
  height: 100%;
  width: 75%;
}

.tray-cards {
  border: white 1px solid;
  float: left;
  height: 75%;
  padding: 2.5% 0%;
  position: relative;
  width: 100%;
}

table {
  width: 98%;
}

td {
  width: 7%;
}

td img {
  height: auto;
  width: 95%;
  margin: auto;
}

.player {
  border: white 1px solid;
  border-bottom: none;
  float: left;
  font-size: 1.5vw;
  height: 25%;
  padding: .5%;
  position: relative;
  text-align: center;
  width: 16.667%;
} 

input {
  margin-bottom: 5%;
  font-size: 1vw;
  text-align: center;
}

.plus {
  background-color: #efefef;
  border-radius: 4px;
  height: 35%;
  font-size: 2vw;
  position: relative;
  text-align: center;
  width: 35%;
}


#instructions button {
  background-color: #efefef;
  border-radius: 4px;
  font-size: .8vw;
  height: 4vh;
  margin-top: 15%;
  text-align: center;
  width:100%;
}

.tray-pile1 {
  border: white 1px solid;
  float: left;
  font-size: 1.8vw;
  height: 65.333%;
  margin-left: 1%;
  padding: 2vh;
  position: relative;
  text-align: center;
  width: 24%;
}

.tray-pile2 {
  border: white 1px solid;
  float: left;
  font-size: 1.8vw;
  height: 34.667%;
  margin-left: 1%;
  padding: 1%;
  position: relative;
  text-align: center;
  width: 24%;
}

.tray-pile1 img {
  height: auto;
  width: 68%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -47%);
}

.tray-pile2 img {
  height: auto;
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -38%);
}

/* Uno Player Tray */
.left {
  float: left;
  height: 100%;
  margin-left: 2.5%;
  margin-right: 1%;
  width: 31%;
}

#deck-tray {
  border: white 1px solid;
  float: left;
  font-size: 2.5vw;
  height: 90%;
  padding: .5%;
  position: relative;
  text-align: center;
  width: 100%;
}

#deck-tray img {
  height: auto;
  width: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.container-buttons-playercard {
  border: white 1px solid;
  border-top: none;
  float: left;
  height: 10%;
  position: relative;
  text-align: center;
  width: 100%;
}

.container-buttons-playercard button {
  background-color: #efefef;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-size: 1vw;
  height: 70%;
  margin-top: 2%;
  position: relative;
  text-align: center;
  width: 25%;
}

#playercard-tray {
  float: left;
  height: 100%;
  margin-right: 1%;
  width: 31%;
}

.playerCardLabel {
  height: 6%;
  font-size: 1.8vw;
  text-align: center;
  border: white 1px solid;
}

.tray-player {
  width: 25%;
  height: 18.8%;
  border: white 1px solid;
  border-top: none;
  float: left;
  position: relative;
}

.tray-player img {
  height: auto;
  width: 65%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

#discard-tray {
  border: white 1px solid;
  float: left;
  font-size: 2.5vw;
  height: 100%;
  padding: .5%;
  position: relative;
  text-align: center;
  width: 31%;
}

#discard-tray img {
  height: auto;
  width: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}



@media only screen and (max-width: 1024px) {

}