body{ 
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to right,rgba(0, 128, 128, 0.733),rgba(220, 20, 60, 0.384));
}
h1{
    color: crimson;
    font-size: 2rem;
    /* animation: dance 5s 2s infinite; */
    
}

.choices{
    display: flex;
    gap: 10px;
    font-size: 4rem;
    margin-bottom: 0;
    p{
        background-color: #8b3535c2;
        border-radius: 50%;
        padding: 10px;
        transition: all 0.5s;
        cursor: pointer;
    }
    p:hover{
        background-color: #8b3535;
        transform: translateY(-10px);
        
    }
    #scissors{
        padding: 20px;
    }
    
}
.info{
    display: flex;
    justify-content: center;
    gap: 5px;
}

.choiceDisplay{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 1.3rem;
    margin: 0;
    
    
}

#resultDisplay{
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 1px 1px 1px white;
    font-weight: bold;
    /* animation: dance 2s ease-in-out infinite; */
}
#finalResultDisplay{
    font-size: 2rem;
    margin: 5px;
    font-weight: bold;
    text-align: center;
    animation: dance 2s ease-in-out infinite;
}

.scoreDisplay{
    background-color: #8b3535;
    padding: 2px 10px;
    display: flex;
    justify-content: left;
    text-align: left;
    gap: 20px;
    color: white;
    font-weight: bolder;
    font-size: 0.8rem;
    

    #playerScore{
        color: lightgreen;
    }

    #computerScore{
        color: white;
    }
}
.greenText{
    color: green;
}
.redText{
    color: red;
}

button{
    padding: 5px 20px;
    border: none;
    border-radius: 5px;
    color: white;
    background-color: #8b3535;
    transition: all 0.5s;
    display: none;
}
button:hover{
    background-color: #8b3535c2;
    transform: scale(1.5);
}


@keyframes dance{
    0%{
        transform: scale(1);
    }

    25%{
        transform: scale(1.2);
    }

    50%{
        transform: scale(0.5);
    }
    100%{
        transform: scale(1);
    }
}