body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #cce7ff;
    font-family: Arial, sans-serif;
  }

  .playerState{
    position: absolute;
    display:flex;
    top: 1vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .center-line {
    position: absolute;
    top: 0;
    left: 50.5%;
    transform: translateX(-50%);
    width: 5px; /* Thickness of the line */
    height: 100%;
    background: white; /* Line color */
    z-index: 1; /* Ensure it is visible above the background */
  }
  
  
  .rink {
    position: relative;
    width: 800px;
    height: 400px;
    background: #88c0f5;
    border: 5px solid white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
  }
  
  .goal {
    position: absolute;
    width: 40px;
    height: 100px;
    background: green;
    border-top: 4px solid white;
   
    border-bottom: 4px solid white;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .goal-left {
    left: 0;
    border-right: 4px solid white;
  }
  
  .goal-right {
    right: 0;
    border-left: 4px solid white;
  }
  
  .player {
    position: absolute;
    width: 40px;
    height: 40px;
    background: yellow;
    border-radius: 50%;
  }
  
  #player1 {
    top: 180px;
    left: 100px;
  }
  
  #player2 {
    top: 180px;
    right: 100px;
    background: green;
  }

  .puck2 {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    top: 180px;
    left: 380px;
  }
  
  .puck {
    position: absolute;
    width: 30px;
    height: 30px;
    background: black;
    border-radius: 50%;
    top: 190px;
    left: 390px;
    z-index: 9;
  }

  .player-human {
    background: blue;
  }
  
  .player-ai {
    background: red;
  }
  
  