*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    /* background-color: rgb(212, 248, 182); */
}
body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(135deg, #fbc2eb, #a6c1ee);

}
h1 {
  /* font-family: 'Poppins', sans-serif; */
  font-size: 2.5rem;
  color: #350a0a;
  background:linear-gradient(135deg, #f775d0, #fa9569);
  text-align: center;
  height: 5rem;
  line-height: 5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
/* h1:hover {
  transform: scale(1.02);
  transition: 0.3s;
} */

.choice{
    height: 320px;
    width:250px;
    /* margin-top: 2rem; */
    /* overflow: hidden; */
}

img{
    height: 300px;
    width:200px; 
    object-fit:cover; 
    border: 4px solid rgb(45, 9, 9);
    border-radius:50%;
    padding: 5px;  
    /* background-color: #2a0000;  */
}

.choice:hover {
  transform: scale(1.1);
  opacity: 0.8;
  cursor: pointer;
  /* background-color: #ee5c5c; */
}

.choices{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:3rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.score-board{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-top: 1rem;
    gap:5rem;
}
#user-score,#comp-score{
    font-size: 3rem;
    color: #350a0a;
}

.msg-container{
    margin-top: 1.5rem;
}

#msg{
    background: linear-gradient(135deg,rgb(240, 151, 62),purple);
    color: #350a0a;
    font-size: 1.6rem;
    /* margin-top: 1rem; */
    display: inline;
    padding: 0.7rem;
    border-radius: 30%;
    border: none;
}
button:hover{
    transform: scale(1.05);
    /* box-shadow:3 #f775d0; */
}
.credit {
    margin-top: 45px;
    text-align: center;
    font-size: 16px;
    color: #280808;
    font-weight: bold;
    text-shadow: 0 0 10px #00ffcc;
}