* {
    margin: 0px;
    padding: 0px;
    text-align: center;
    background-color: rgb(226, 226, 226);
  }
  
  h1 {
    background-color: rgb(29, 23, 112);
    color: whitesmoke;
    font-family: "Allerta Stencil";
    font-weight: 350;
    height: 5rem;
    line-height: 5rem;
  }
  
  .choice {
    height: 170px;
    width: 170px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .choice:hover {
    opacity: 0.9;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.76);
  }
  
  img {
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .choices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
  }
  
  .score-board {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    gap: 5rem;
    font-size: 2rem;
  }
  
  #user-score,
  #bot-score {
    font-size: 5rem;
    font-family: "Allerta Stencil";
  }
  
  .messagecontainer {
    margin-top: 3rem;
  }
  
  #msg {
    background-color: rgb(16, 17, 61);
    color: white;
    font-size: 2rem;
    display: inline;
    padding: 1rem;
    border-radius: 1rem;
  }
  
  .refresh {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #refreshicon {
    height: 70px;
    width: 70px;
  }
  



  /* Responsive styles */
  @media screen and (max-width: 768px) {
    .choices {
      flex-direction: column;
      gap: 2rem;
    }
  
    .score-board {
      flex-direction: column;
      gap: 2rem;
    }
  
    #user-score,
    #bot-score {
      font-size: 3rem;
    }
  
    .refresh {
      margin-top: 2rem;
    }
  
    #refreshicon {
      height: 50px;
      width: 50px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .choice {
      height: 120px;
      width: 120px;
    }
  
    img {
      height: 100px;
      width: 100px;
    }
  
    .score-board {
      font-size: 1.5rem;
    }
  
    #msg {
      font-size: 1.5rem;
    }
  
    #refreshicon {
      height: 40px;
      width: 40px;
    }
  }
  
