body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}
.heading h1 {
    font-size: 50px;
    margin: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.images {
    display: flex;
    justify-content: space-between;
}
img {
    width: 850px;
    height: 500px;
    width: 45%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}
.score-play{
    display: flex;
    justify-content: space-between;
}

.play,
.score{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex-basis: 48%;
    align-items: center;
}
.btn {
    background: linear-gradient(to right, #ff416c, #ff4b2b); 
    color: white;
    padding: 15px 30px;
    margin: 10px;
    font-size: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background: linear-gradient(to right, #ff4b2b, #ff416c);
    transform: scale(1.1);
}
.play-head,
.score-head{
    flex-basis: 100%;
    color: #253b9e;
    font-size: 35px;
}
.Player-score-txt,
.Computer-score-txt,
.Player-score,
.Computer-score{
    flex-basis: 50%;
}

.Player-score-txt,
.Computer-score-txt {
    font-size: 30px;
    color: black;
}

.Player-score,
.Computer-score {
    font-size: 25px;
    color: #333;
    font-weight: bold;
}
