body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
  }
  
  h1 {
    font-size: 4rem;
    text-align: center;
    color: white;
    background-color: black;
    padding: 40px;
    margin: 0;
  }
  
  .buttons {
    cursor: pointer;
    display: flex;
    justify-content: center;
    gap: 5dvw;
    margin-top: 8dvh;
    padding: 30px 30px;
  }
  
  .choice-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    background: none;
  }
  
  button:hover {
    background-color: white;
    border-radius: 50px;
    padding: 20px 20px;
    transition: 0.4s ease;
    filter: invert(100%);
    cursor: pointer;
  }
  
  .choice-button img {
    object-fit: contain;
  }
  
  .choice-button span {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
  }
  
  .scoreboard {
    border: 4px solid;
    border-color: black;
    width: 200px;
    margin: 35px auto;
    font-size: 2.5rem;
    border-radius: 10px;
    text-align: center;
    padding: 15px 20px;
    position: relative;
  }
  
  .name {
    background-color: rgb(0, 0, 0);
    font-size: 14px;
    padding: 10px 10px;
    border-radius: none;
    color: white;
  }
  
  #you {
    position: absolute;
    top: 20px;
    left: -25px;
  }
  
  #cp {
    position: absolute;
    top: 20px;
    right: -25px;
  }
  
  .result {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4dvh;
    margin-bottom: 4dvh;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 4dvh 0;
  }
  
