body {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  background-color: #2b2b2b;
  color: rgb(255, 238, 238);
}

label{
  font-size: 30px;
}

#game{
  position: absolute;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  left:0px;
  top: 0px;
  height: 100%;
  width: 100%;
}

#enterNameLabel{
  margin-top: 10vh;
  margin-bottom: 20px;
  font-size: 30px;
}

#creatGame{
  background-color: green;
  border: 1px solid black;
  border-radius: 10px;
  font-size: 30px;
  color: white;
  font-family: "Trebuchet MS";
}

#creatGame:hover{
  background-color: rgb(3, 161, 3);
}

#line{
  width: 75%;
  height: 3px;
  background-color: rgb(255, 238, 238);
  border-radius: 10px;
  margin-bottom: 2vh;
  margin-top: 2vh;
}

#playerList{
  display: grid;
  width: 90vw;
  column-gap: 30px;
  row-gap: 30px;
  grid-template-columns: repeat(auto-fit, 11.25rem);
  justify-content: center;
  margin:25px;
}

.buttonDesign{
  font-family: "Trebuchet MS";
  margin-top: 0px;
  border: 1px solid black;
  border-radius: 5px;
  font-style: bold;
  font-size: 20px;
}

.buttonDesign:hover{
  background-color: #b4b4b4;
}

#whosTurn{
  top: 0;
  left: 0;
  margin-top: 30px;
}

#button-grid{
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 24px;
  margin: 15px;
}

.dropButton2{
  font-size: 50px;
  padding-bottom: 10px;
  background-color:#2b2b2b;
  color:white;
  border: none;
}

.dropButton2:hover{
  transform: scale(1.33);
  color:#b4b4b4;
}

#hand{
  position: absolute;
  width: 200px;
  height: 200px;
}

#board{
  position: relative;
  margin-bottom: 75px;
}

#grid{
  display: grid;
  grid-template-columns: repeat(7, auto);
  grid-template-rows: repeat(6, auto);   
  gap: 0px;
  position: relative;
  z-index: 2;
}

#boardImg{
  position: absolute;
  z-index: 3;
  width: 502.5px; 
  height: 402px;
  top: -3px;
  left: -41px;
}

#table{
  position: absolute;
  z-index: 1;
  width: 175%;
  height: 175%;
  top: 116px;
  left: -150px;
}

#you,#opponent{
  position: absolute;
  top: 0;
  margin: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#you {
  left:0;
}

#opponent {
  right: 0;
}


/* Classes added by code*/
.hide{
  display: none;
}

.chip{
  height: 60px;
  width: 60px;
  display: inline-block;
}

.usedButton{
  visibility: hidden;
}
/*------------------------*/








/*Not using */
.dropButton{
  background-color: #2b2b2b;;
  border-radius: 100px;
  border-color: white;
  height: 50px;
  width: 50px;
}

.dropButton-red{
  background-color: #2b2b2b;
}

.dropButton-red:hover{
  background-color: red;
}

.dropButton-blue{
  background-color: #2b2b2b;
}

.dropButton-blue:hover{
  background-color: #ffc602;
}

.dropButton-off{
  background-color: #2b2b2b;
}

.dropButton-off:hover{
  background-color: grey;
}