* {
    margin: 0%;
    padding: 0%;
    
}


#navbar{
    width: 100%;
    height: 60px;
    color: aliceblue;
    background-color: blue;
    font-size: xx-large;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;

}
#outer{
    display: flex;
    justify-content: center;
    align-items: center;
}


.choice{
   font-size: xx-large;
   height: 100px;
   width: 100px;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
}

#choices{
    display: flex;
    justify-content: center;
    position: relative;
    top: 6rem;    
    gap: 3rem;

    /* object-fit: cover; */
}

.choice:hover{
    border: 5px solid black;
    border-radius: 50%;
    cursor: pointer;
    /* opacity: 0.5; */
}

#counter{
    display: flex;
    justify-content: center;
    position: relative;
    top: 9rem;

    font-size: xx-large;
    font-weight: 900;

}

#user{
    display: flex;
    margin: 1%;
}
#computer{
    display: flex;
    margin: 1%;
}
#user-count{
    padding-right: 20px;
}
#computer-count{
    padding-right: 20px;
}

#button{
    height: 50px;
    width: 300px;
    background-color: rgb(25, 25, 204);
    color: aliceblue;
    font-size: larger;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
   
    
}
#last-btn{
    display: flex;
    justify-content: center;
    position: relative;
    top: 12rem;
}

.green{
    background-color: green;
    width: 400px;
}

.red{
    background-color: red;
}