* {
  box-sizing: border-box;
}

img{
  max-width: 100%;
  height: auto;
}
#logo {
  color: red;
  font-size: 5em;
  font-weight: bold;
}

#game_board {
  display: inline-block;
  background-color: #076324;
  height: 500px;
  border: solid #55342b 30px;
  border-radius: 10px;
}

#opp_cards {
  position: absolute;
  top: 35%;
  left: 1%;
  height: 147px;
  width: 100px;
  border: solid red 1px;
}

.side_card{
  transform: rotate(90deg);
  margin-left: 13px;
  margin-top: -12px;
  margin-bottom: -12px;
  padding-top: -15px;
}

#com_cards {
  position: absolute;
  top: 100px;
  left: 30%;
  height: 100px;
  width: 380px;
  border: solid red 1px;
}

#bur_cards{
  position: absolute;
  top: 214px;
  left: 80%;
  transform: rotate(20deg);
}

.small_card{
  margin-left: -6px;
  padding-left: -6px;
}

#pla_cards {
  position: absolute;
  top: 330px;
  left: 38%;
  height: 100px;
  width: 155px;
  border: solid red 1px;
  padding-left: -4px;
}

#text_area{
  height: 380px;
  border: solid black 2px;
  overflow: scroll;
}

.left_justify{
  text-align: left;
}

.right_justify{
  text-align: right;
}

#burn1,#burn2,#burn3{
  visibility: hidden;
}
