*{
    margin: 0;
}
h1{
    text-align: center;
    margin-top: 10px;
    font-family: 'Kanit', sans-serif;
}

.outer{
    width: 90%;
    height: 83vh;
    background-color: azure;
    margin: 5vh 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: 'DM Sans', sans-serif;
}
.player{
    margin-bottom: 50px;
    font-size: 2rem;
}

.buttons{
    display: flex;
    gap: 20px;
}
.btn{
    height: 10vh;
    width: 10vh;
    border-radius: 5px;
    cursor: pointer;
}
button{
    border-radius: 10px;
    cursor: pointer;
}
#endBtn{
    background-color: rgba(255, 0, 0, 0.668);
}
img{
    height: 9vh;
    width: 8vh;
    object-fit: contain;
    mix-blend-mode:darken;
    background-color: transparent;
}
.resultCon{
    margin-top: 25px;
    font-size: 1.7rem;
    text-align: center;
}
.totalScore{
    margin: 10px 10px;
}
.hands{
    margin: 10px 10px;
}
.result{
    margin: 10px 10px;
}

 /*  Styling Temp (which Used To Welcome And Ask User Thier In Game Name
 Styling for the temp background */
 
 .tempBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(76, 160, 69, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }

  /* Styling for the modal content */
  .tempText {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 400px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
  }

  /* Styling for the input */
 input {
    padding: 8px;
    border: 1px solid #321f1f;
    border-radius: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    width: 100%;
    font-family: 'Poppins', sans-serif;
  }
  /* Styling for the submit button */
  #tempBtn{
    padding: 8px 20px;
    border-radius: 5px;
    border: none;
    background-color: #0aff13;
    color: white;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
  } 

  .scoreType{
    display: flex;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
  }
  #maxSco{
    cursor: pointer;
    width: 15vh;
  }

  .winBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(76, 160, 69, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  .winText {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 400px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
  }
  #winBtn{
    padding: 8px 20px;
    margin-top: 10px;
    border-radius: 5px;
    border: none;
    background-color: #39d73f;
    color: white;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
  } 
 /* Media Quaery  */
  @media screen and(max-width:550px) {
    .tempText{
        max-width: 90vh;
    }
    .tempBg{
        width: 90%;
    }
  }