html {
    background-color: black;
    background-image: url(images/mickey.jpg);
    background-position: center;
    background-position-y: -12.5em;
    background-repeat: no-repeat;
    background-size: 120%;
  }
  
  main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    font-family: 'WaltographRegular';
    font-weight: normal;
    font-style: normal;
  }

  
  #player-one {
    grid-column: 1 / 2;
  }
  
  #player-two {
    grid-column: 3 / 4;
  }

  #p1-input {
      margin-right: 3em;
      font-size: 30pt;
      color: #DFBE97;
  }

  #p2-input {
      margin-left: 3em;
      font-size: 30pt;
      color: #DFBE97;
  }
  
  .player {
    justify-self: center;
    text-align: center;
    font-size: 20pt;
  }

  h2 {
    color:#ec8583;
    margin-bottom: 15px;
  }
  
  input {
    text-align: center;
    width: 40%;
    font-size: 20pt;
    margin-top: 10px;
    color: #121212;
    background-color: white;
    border-color: black;
    border-radius: 5px;
  }

  input:hover {
      cursor: pointer;
  }

  input:focus {
      outline-color: black;
      outline-offset: 2px;
      transition: 0.05s ease-in-out;
  }

  .flip-warning {
      color:#ec8583;
      font-size: 16pt;
      opacity: 0;
  }

  .flip-warning:hover {
      opacity: 1;
      cursor: default;
  }
  
  .hand {
    margin-top: -15px;
    max-height: 400px;
    max-width: auto;
    transition: 0.3s ease-in-out;
  }

  .leftHandAnim {
    animation: leftHand123Shoot 3s;
  }

  .rightHandAnim {
    animation: rightHand123Shoot 3s;
  }
  
  #results {
    grid-column: 2 / 3;
    justify-self: center;
    justify-content: center;
    text-align: center;
    color: white;
  }

  .disappear {
      visibility: hidden;
  }
  
  button {
    padding: 20px 20px 10px 20px;
    font-family: 'WaltographRegular';
    color: black;
    background-color: white;
    font-size: 30pt;
    margin-top: .5em;
    transition: 0.05s ease-in-out;
    border: none;
    border-radius: 10px;
  }
  
  #players-button {
    padding: 6px 20px 0 20px;
    font-family: 'WaltographRegular';
    font-size: 16pt;
    margin-top: .5em;
    transition: 0.05s ease-in-out;
    border: none;
    border-radius: 10px;
  }

  select {
      font-size: 15pt;
      background-color: #383737;
      color: white;
      border-radius: 10px;
      border: none;
  }

  select:focus {
      outline: none;
  }
  
  button:hover {
    color: white;
    background-color: #383737;
    transform: scale(1.1);
    cursor: pointer;
  }

  button:focus {
    outline: none;
  }
  
  #display-result {
    color:#ec8583;
    width: 100%;
    margin-top: 8.8em;
    font-size: 38pt;
  }

  img {
      width: 100%;
  }

  @keyframes rightHand123Shoot {
    0%{
      transform: rotate(0deg) translate(0px, 50px);
    }
    15%{
      transform: rotate(50deg) translate(0px, -150px);
    }
    30%{
      transform: rotate(0deg) translate(0px, 50px);
    }
    45%{
      transform: rotate(50deg) translate(0px, -150px);
    }
    60%{
      transform: rotate(0deg) translate(0px, 50px);
    }
    75%{
      transform: rotate(50deg) translate(0px, -150px);
    }
    100%{
      transform: rotate(0deg) translate(0px, 50px);
    }
  }
  
  @keyframes leftHand123Shoot {
    0%{
      transform: rotate(0deg) translate(0px, 50px);
    }
    15%{
      transform: rotate(-50deg) translate(0px, -150px);
    }
    30%{
      transform: rotate(0deg) translate(0px, 50px);
    }
    45%{
      transform: rotate(-50deg) translate(0px, -150px);
    }
    60%{
      transform: rotate(0deg) translate(0px, 50px);
    }
    75%{
      transform: rotate(-50deg) translate(0px, -150px);
    }
    100%{
      transform: rotate(0deg) translate(0px, 50px);
    }
  }
