html,body{
    margin:0px;
    background-color: #2F4F30;
    color:white;
}

.title{
    text-align: center;
    /* background-color: black; */
    /* color:white; */
    padding: 20px;
    font-size: 25px;
}

.buttonPannel{
    width: 100%;
}

#player-cards, #computer-cards{
    display: flex;
    height: 240px;
}

.card{
    position: relative;
    width: 150px;
    left: 100px;
    margin-left: -75px;

    transform: perspective(900px) translateY(-5%) rotateX(25deg) translateZ(0);
}

.signature{
    position: absolute;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom:0;
}