body{
    background-color: #ccc;
}

.container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-content: space-evenly;
}

.containers{
    font-size: 6rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: 100ms;
}

.containers:hover{
    transform: scale(1.2);
}

.score{
    display: grid;
    justify-content: center;
    justify-items: center;
    align-items: center;
    grid-template-columns: repeat(2,1fr);
    margin-top: 20px;
}

.you{
    font-size: 3rem;
}

.computer{
    font-size: 3rem;
}

.score span{
    font-size: 2rem;
    color: #333;
    opacity: 0.5;
}

.result-selection{
    font-size: 3rem;
    opacity: 0.6;
}

.result-selection.winner{
    opacity: 1;
    font-size: 4rem;

}