body {
    background: linear-gradient(to bottom, #00bfff, #1e90ff); 
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}
.image-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 20px;
}

.image-container img {
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: transform 0.3s;
    background: none;
    border-radius: 50%; 
}

.image-container img:hover {
    transform: scale(1.1);
}
.score-board {
    display: flex;
    justify-content: space-around;
    width: 80%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px 30px;
    border-radius: 10px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.score-board .score {
    text-align: center;
}

.score-board p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.score-board .score p:first-child {
    font-size: 30px;
    color: #ff8c00; /* Orange for the score */
}
  
.msg-container {
    margin-top: 5rem;
  }
  
  #msg {
    background-color: #184e8d;
    color: #fff;
    font-size: 1.5rem;
    display: inline;
    padding: 1rem;
    border-radius: 1rem;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }










/* background-color: rgba(0, 0, 0, 0.6); box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); */