body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: whitesmoke;
    color: slategray
}

.heading {
    text-align: center;
    margin: 10px;
}

.gameTitle {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.playerImgs {
    align-items: center;
}

.pImg:hover {
    cursor: pointer;
    width: 150px;
    height: 150px;
  }
  .active {
    width: 150px;
    height: 150px;
  }
  
  .winner {
    width: 100%;
  }
  .reset {
    display: none;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 60px;
    background-color: rgb(243, 229, 176);
    color: slategray;
    font-size: x-large;
    border: 1px solid slategray;
    border-radius: 5px;
  }
  .reset:hover {
    cursor: pointer;
  }
  .winnerDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
  }