/* font-family: 'RocknRoll One', sans-serif; */
body {
    background-color: indigo;
    color: #fff;  
    font-family: 'RocknRoll One', sans-serif;;
    margin: 0;
    padding: 0;
  }
  
  .game-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    width: 100vw;
  }
  
  canvas {
    border: 4px solid #ff6600;
    border-radius: 8px;
    background-color: #feff9d;
  }

  .winner-message {
    align-items: center;
    background-color: #82B700;
    color: rgb(255, 255, 255);
    display: flex;
    font-size: 20px;
    font-weight: bold;
    justify-content: center;
    margin-top: 10px;
    height: 200px;
    width: 300px;
}
.loser-message {
    align-items: center;
    background-color: #b72500;
    color: rgb(255, 255, 255);
    display: flex;
    font-size: 20px;
    font-weight: bold;
    justify-content: center;
    margin-top: 10px;
    height: 200px;
    width: 300px;
  }
  .final-message {
    place-items: center;
  }
  .btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
  }
  
  button {
    background-color: #fdef05;
    border-radius: 8px;
    border-color: #ff6600;
    font-family: inherit;
    margin: 0;
    padding: 5px 20px;
    width: 100px;
  }
  button:not(:last-child) {
    margin-right: 10px;
  }
   .restart-delete-btn {
    background-color: #82B700;
    border-color: #ff6600;
    font-weight: bold;
    font-size: 10px;
    padding: 5px 0 5px;
    height: 50px;

  }
  .messages {
    display: flex;
    flex-wrap: wrap;
    margin: 10px auto;
    width: 80%;
    max-width: 460px;
  }
  
  .stats {
    display: block;
    margin: 0;
    width: 100%;
  }
  .countdown {
    text-align: center;
    font-size: 30px;
  }
  .inactive {
    display: none;
  }
  
  @media (max-width: 440px) {
    button { margin: 5px 0 5px; padding: 10px 20px; }
    #up, #down { margin-left: 100%; margin-right: 100%; }
    #restart-delete-btn { margin: 15px 0 15px;}
    .messages {text-align: center;}
  }