* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  width: 100vw;
  height: 100vh;
  background: radial-gradient(rgb(41, 185, 41), rgb(5, 65, 5));
}
.card {
  width: 25vmin;
  height: 40vmin;
  border-radius: 5px;
  border: 2px solid black;
  background: #eee;
  margin: 0.5vmin;
  font-family: sans-serif;
  font-size: 15vmin;
  word-wrap: break-word;
  text-align: center;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}
.comCard {
  background: rgb(194, 35, 35);
  color: rgb(194, 35, 35);
  user-select: none;
  border: 5px solid #ddd;
}
#myHand {
  width: 100vw;
  height: 42vmin;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
}
#comHand {
  width: 100vw;
  height: 42vmin;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
}
#aceBox {
  width: 90vw;
  height: 90vh;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 5vw;
  top: 5vh;
  font-size: 9vmin;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  display: none;
}
.aceButton {
  font-size: 7vmin;
  padding: 2vmin;
  width: 40%;
}
#roundValue {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 42vmin;
  width: 40vmin;
  line-height: 42vmin;
  font-size: 9vmin;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
}
#comRoundValue {
  position: absolute;
  top: 0;
  right: 0;
  height: 42vmin;
  width: 40vmin;
  line-height: 42vmin;
  font-size: 9vmin;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
}
#ui {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  width: 100vw;
  justify-content: space-evenly;
  align-items: center;
}
#ui button {
  width: 25%;
  padding: 2vmin 0;
  font-size: 7vmin;
}
#gameButtons {
  min-width: 70%;
  width: fit-content;
}
#gameButtons button {
  font-weight: bold;
  background: rgb(175, 136, 65);
  border: 4px solid rgb(77, 62, 21);
  color: rgb(77, 62, 21);
  padding: 1vmin;
  text-shadow: 1px 1px 1px black;
}
#restartButton {
  font-weight: normal;
  color: #555;
}
#outcome {
  font-size: 6vmin;
  font-family: Verdana;
  color: white;
}