*{
    margin: 0;
    padding: 0;
    text-align: center;
}

body{
    background-color: black;
    color: white;
}

h1{
    background-color: #081b31;
    color: white;
    height: 5rem;
    text-align: center;
    line-height: 5rem;

}


.options{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin-top: 5rem;
    
    
}

.option img:hover{
    border: 10px solid #081b31;
    cursor:pointer;
}


.opt :hover{
    border: 10px solid white;
    cursor:pointer; 
}



.option img{
    height: 200px;
    width: 200px;
    object-fit:cover;
    border-radius: 50%;
}


.option{
    height: 200px;
    width: 200px;
    border-radius: 50%;
    
}

.score-brd{
    margin-top:6rem;
    display: flex;
    justify-content: center;
    gap:5rem;
    font-size: 2rem;
}

#your, #computer{
    font-size: 5rem;
}

.message{
    margin-top: 5rem;
}

#msg{
    background-color: #081b31;
    color: white;
    font-size: 2rem;
    height: 50px;
    border-radius: 1rem;
    display: inline-block;
    padding: 1rem;
}



/**Let's add some extra functonality in the game**/


#mode{
    font-size: 2rem;
    background-color: blue;
    color: white;
    height: 30px;
    line-height: 30px;
    border-radius: 1rem;
    display: inline-block;
    padding: 1rem;
    margin-top: 5rem;
    cursor:pointer;
}



/**Let's make the game responsive***/


@media (max-width: 800px){

     .option img{
        height: 10rem;
        width: 10rem;
        
     }

     .options{
        gap: 2vw;
     }


}


@media (max-width: 700px){
    .option img{
        height: 8em;
        width: 8em;
        
     }

     .score-brd{
        margin-top: 3rem;
        font-size: 1.5rem;
    }

    #msg{
        font-size: 1.5rem;
        height: 35px;
        border-radius: 0.5rem;
        padding: 0.8rem;
    
    }
}

@media (max-width: 500px){
    .option img{
        height: 6em;
        width: 6em;
        
     }

     #mode{
        font-size: 1.5rem;
        height: 25px;
        line-height: 25px;
        border-radius: 0.8rem;
        padding: 0.8rem;
        margin-top: 3rem;
     }
}






















