﻿* {
  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;
  background-color: #122463;  
  height: 100%;
  margin: 0; 
}

.full-height {
  height: 100%;
  padding:.5%; 
}

#game-container {
  position: relative;
  height: 872px;
  left: 50%;
  margin: 0;
  max-height: 99%;
  max-width: 99%;
  padding-right:-18%;
  top:50%;
  transform: translate(-50%, -50%);
  width: 1810px;
}

.left {
  border: white 1px solid;
  float: left;
  height: 100%;
  margin-left: 3%;
  margin-right: 1%;
  text-align: center;
  width: 25%;
}

#deck-tray {
  float: left;
  font-size: 2.5vw;
  height: 93%;
  padding: .5%;
  position: relative;
  width: 100%;
}

#deck-tray img {
  border-radius: 6%;
  height: auto;
  width: 80%;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}


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

.playerCardLabel {
  height: 7%;
  font-size: 2vw;
  line-height: 150%;
  text-align: center;
  border: white 1px solid;
}

#tray-player {
  width: 100%;
  height: 93%;
  border: white 1px solid;
  border-top: none;
  float: left;
  position: relative;
}

#tray-player img {
  border-radius: 6%;
  height: auto;
  margin: 1%;
  width: 23%;
  position: relative;
}

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

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

#container-button {
  bottom: 0;
  position: absolute;
  text-align: center;
  height: 15vh;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: 10vw;
}

#container-button button {
  font-size: 1vw;
  height: 5vh;
  width: 80%;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  #game-container {
    height: 658px;
    width: 1013px;
   }
  }
