@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Audiowide", sans-serif;
}
body{
    height: 100vh;
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    background: #fbf7fb;
}
.container{
    display: flex;
    flex-direction: column;
    max-width: 535px;
    width: 100%;
    padding: 2rem 5rem; /*top and down left and right*/
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1); /*افقي راسي انتشار الظل*/
}
.result_images{
    display: flex;
    gap:7rem;
    justify-content: center;
}
.fa-regular{
    font-size: 50px;
    color: rgb(140, 13, 176);
}
.container.start .user_result{
    transform-origin: left;
    animation: userAnimate 0.7s ease infinite;
}
@keyframes userAnimate{
    50%{
        transform: rotate(10deg);
    }
}
.container.start .bot_result{
    transform-origin: right;
    animation: botAnimate 0.7s ease infinite;
}
@keyframes botAnimate{
    50%{
        transform: rotate(-10deg);
    }
}
.user_result i{
    transform: rotate(90deg);
    font-size: 90px;
}
.bot_result i{
    transform: rotate(-90deg) rotateY(180deg);
    font-size: 90px;
}
.result{
    text-align: center;
    font-size: 2rem;
    color: rgb(140, 13, 176);
    margin: 1.5rem 0;
}
.option_images i{
    width: 50px;
}
.option_images{
    display:flex;
    width: 100%;
    align-items: center;
    margin-top: 2.5rem;
    justify-content: space-evenly;
}
.fa-hand-scissors{
    transform: rotate(-90deg) scaleX(-1);
}
.container.start .option_images{
    pointer-events: none;
}
.option_image{
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.option_image:hover{
    opacity: 1;
}
.option_image:active{
    opacity: 1;
}
.option_image i{
    pointer-events: none;
}
.option_image p{
    color: #7d2ae8;
    font-size: 1.2rem;
    margin-top: 1rem;
    pointer-events: none;
}
@media(max-width:768px){
    .container{
        padding: 2rem;
    }
    .result_images i{
        width: 80px;
    }
}
@media(max-width:500px){
    .option_images{
        justify-content: space-between;
    }
    .result_images i{
        width: 40px;
    }
}