*{
    margin: 0;
    padding: 0;
    text-align: center;
 
}

h1{
    background-color: black;
    color: white;
     height: 5rem;
     line-height: 5rem;
}
.choice{
    height: 165px;
    width: 165px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
   align-items: center;
}
.choice:hover{
    cursor: pointer;
    background-color: black;
}
img{
 height: 150px;
 width: 150px;
 object-fit: cover;
 border-radius: 50%;
}
.choices{
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin: 20px;
    }
    .score-bord{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
        margin: 2rem;
        gap: 5rem;
    }
    #You,#computer{
        font-size: 4rem;
    }
#msg{
    background-color: black;
    margin-top: 5rem;
    color: white;
    font-size: 2rem;
    display: inline;
    padding: 10px;
    border-radius: 1rem;
}
#mode{
    position: relative;
    max-width: 100px;
    left: 90%;
    bottom: 350px;
    font-size: 50px;
    transform: scale(-1);
    transition: box-shadow 0.3s ease-in-out;
}
#mode:hover{
    cursor:pointer;
    transform: scale(-1.1);
    text-shadow: 0px 0px 10px orange,
    0px 0px 15px yellow,
    0px 0px 20px orangered;
}
@media screen and (max-width: 1024px) {
    .choices {
        gap: 3rem;
        flex-wrap: wrap;
    }
    .choice {
        height: 130px;
        width: 130px;
    }
    img {
        height: 120px;
        width: 120px;
    }
    .score-bord {
        font-size: 1.5rem;
        gap: 3rem;
    }
    #You, #computer {
        font-size: 3rem;
    }
    #msg {
        font-size: 1.5rem;
    }
    #mode {
        left: 85%;
        bottom: 300px;
        font-size: 40px;
    }
}

/* Mobile Devices (widths up to 600px) */
@media screen and (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
        height: 4rem;
        line-height: 4rem;
    }
    .choices {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    .choice {
        height: 100px;
        width: 100px;
    }
    img {
        height: 90px;
        width: 90px;
    }
    .score-bord {
        flex-direction: row;
        text-align: center;
        font-size: 1.2rem;
        gap: 2rem;
    }
    #You, #computer {
        font-size: 2.5rem;
    }
    #msg {
        font-size: 1.2rem;
        padding: 8px;
    }
    #mode {
        width: 50px;
        left: 90%;
        bottom: 250px;
        font-size: 30px;
    }
}