  body{
    background: linear-gradient(0deg,rgb(117, 26, 26) 0%, rgb(92, 11, 11));
    background-repeat: repeat-x;
    background-size: contain;
    height: 95vh;
  }

  .falling-card {
  position: absolute;
  width: 100px;
  z-index: 1;
  transition: transform 0.1s linear;
  }

  /* Estilo do texto */
  p, h1, h2, h3, ul, a, strong, #result, #playerHand, #cpuHand{
    color: white;
  }
  mark{
    background-color: rgb(128, 10, 10);
    border-radius: 3px;
    word-spacing: 3px;
  }

  /* Estilo da tabela */
    table, tr, th{
    color: white;
    border: 4px outset white;
    margin-left: auto;
    margin-right: auto;
  }

  /* Estilo do botão */
    button{
      background-color: rgb(163, 163, 163);
      border: 4px outset rgb(75, 75, 75);
      position: absolute;
      bottom: 15px;
  }