header{width: 60%;
        margin: auto;
        border-radius: 20px;
        
        border: 2px solid rgba(212, 212, 212,0.6);
        margin-top: 3vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
    height: 15vh;}
header img{height: 80%;
        margin-left: 20px;}
body{margin: 0;
    background-color: rgb(9, 9, 134);
color: white;
        font-family: sans-serif;}
.score{background-color: white;
        color: black;
        padding: 0px 20px;
        border-radius:10px ;
        text-align: center;
        height: 85%;
        margin-right: 10px;}
.choix{width: 55vw;
        height: 75vh;
        position: relative;
        margin: auto;}
.none{display: none;}
.signe{width: 120px;
       height: 120px;
        border-radius: 50%;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        }
.papier{position: absolute;
        top: 5%;
        left: 15%;
        border: 20px solid rgb(73, 73, 255);
        z-index: 5;
        
        }
.papierpick{border: 50px solid rgb(73, 73, 255);}
.rocher{position: absolute;
        top: 5%;
        right: 15%;
        border: 20px solid yellow;
        z-index: 5;}
.rocherpick{border: 50px solid yellow;}
.ciseaux{position: absolute;
        bottom: 0%;
        left: 50%;
        transform: translate(-50%,-50%);
        border: 20px solid red;
        z-index: 5;}
.ciseauxpick{border: 50px solid red;}
#triangle{position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 55%;
        }
.rules{position: absolute;
        right: 5%;
        bottom:2%;
        }
.rules a{text-decoration: none;
        color: white;
        font-family: sans-serif;
        padding: 10px 25px;
        border: 2px solid rgba(212, 212, 212,0.6);
        border-radius: 10px;
        font-size: 20px;
        }
.block{display: flex;
        width: 85%;
        height: 70%;
        align-items: center;
        margin-right: auto;
        margin-left: auto;
        margin-top: 5%;
        text-align: center;
        position: relative;
        }
.pick{display: flex;
        flex-direction: column;
        align-items: center;}
.picked{width: 60%;}
.signepick{border-radius: 50%;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 300px;
        height: 300px;
        margin-top: 15%;
        position: relative;}

.win { position: absolute;
        left: 50%;
        transform: translateX(-50%);}
.house{position: absolute;
        right: 0%;
        width: 30%;}
#play{text-decoration: none;
        color: rgb(245, 39, 39);
        background-color: white;
        padding: 15px 30px ;
        font-size: 30px;
        border-radius: 10px;
        }
h1{font-size: 50px;}

.regle{display: block;
        width: 30%;
        height: 60%;
        position : absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        background-color: white;
        z-index: 10;
        color: black;
        border-radius: 20px;
        }

.regle h2{margin-left: 20px;}
.a {position: absolute;
        top: 20px;
        right: 20px;}
.imgrules{position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);}

.backisback{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        backdrop-filter: blur(5px);
        z-index: 5;
}
.pif::after{content: '';
                        width:600px ;
                        height: 600px;
                        position: absolute;
                        top: 50%;
                        right: 50%;
                        z-index: -1;
                        transform: translate(50%,-50%);
                        border-radius: 100%;
                        background: radial-gradient(rgba(255,255,255,1),rgba(255,255,255,0.1));
                        
                        
                        
                        


}
.pif::before{
        content: '';
        width: 400px;
        height: 400px;
        position: absolute;
        top: 50%;
        right: 50%;
        transform: translate(50%,-50%);
        background: transparent;
        border-radius: 100%;
       border: 10px transparent;
        border-image: radial-gradient(rgba(255,255,255,1),rgba(255,255,255,0.1) 10);
       
        animation: 1.2s linear infinite  win;

}

@keyframes win {

        from{
               width: 400px;
               height: 400px;
        }
        to{
                width: 580px;
                height: 580px;

        }
}