body {
    text-align: center;
  }
  .container {
    margin: 0 auto;
    background-color: lightblue;
    border-radius: 20px;
    padding: 25px 50px;
    width: 85vw;
  }
  .action {
    max-width: 700px;
    padding: 40px 0;
    margin: 0 auto;
    background-color: rgb(105, 45, 45);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 20px;
  }

  .options {
    flex: 1 1 30%;
    border-radius: 50%;
    border-width: 4px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    animation-name: anim-fade;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    width: 100%;
    max-width: 120px;
  }
  .display-moves {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
  }

  .separator {
    font-size: 5em;
  }