/* universal selector css appliqué atoute la page */
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background: #936bff;
    color: #fff;
    font-family: 'Lobster', cursive;
}
/* centrage de la section game */
.game{
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
}
/* titre */
.titre{
    position: absolute;
    top: 0;
    font-size: 4rem;
    /* z-index: 2; */
}
/* score */
.score{
    display: flex;
    width: 30vw;
    justify-content: space-evenly;
    position: absolute;
    top: 70px;
    /* z-index: 1; */
}
.jscore,.rscore{
    text-align: center;
    font-size: 1.5rem;
    margin-top: 1rem;
}
/* 3bts sur une ligne et style*/
.options{
    display: flex;
    width: 50vw;
    justify-content: space-evenly;
    margin-top: 2rem;
}
.pierre, .feuille, .ciseaux{
    padding: 0.8rem;
    width: 100px;
    border-radius: 10px;
    background:#04041f;
    outline: none;
    border-color: #04041f;
    border: none;
    cursor: pointer;
}
.move{
    font-size: 2rem;
    font-weight: bold;
}
/* bt recommencer */
.reload {
    display: none;
    margin-top: 2rem;
    padding: 1rem;
    background: green;
    outline: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.result{
    position: fixed;
    margin-top: 20px;
    font-size: 1.2rem;
}
.image{
    flex-direction: row;
    display: flex;
    justify-content: center;
}

.image img{
    width: 400px;
    padding: 0 10%;
}

 .PierreP, .FeuilleP, .CiseauxP, .PierreR, .FeuilleR, .CiseauxR {
    display: none;

}
  
/* Responsive Design */
/* @media screen and (max-width: 612px)
{  
    .title{
        text-align: center;
    }
    .score{
        position: absolute;
        top: 200px;
        width: 100vw;
    }
    .options{
        width: 100vw;
    } */