*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body{  
    background: url(https://s1.best-wallpaper.net/wallpaper/m/1501/Canada-Ontario-winter-snow-footprints-trees-sunset_m.webp);
    background-size:cover ;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container{
    padding: 20px;
     background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 550px;


    
backdrop-filter: blur (10px);
border-top: 1px solid rgba(255,255,255, 0.4);
border-left: 1px solid rgba(255,255,255, 0.3);
box-shadow: 3px 3px 3px rgba(0,0,0,0.089);
}

.buttons{
    margin: 30px 0;
    display: flex;
    gap: 40px;
}

button{
    padding: 10px;
    font-size: 50px;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    transition:opacity 0.5s ease-in-out ;
}

button:hover{
    opacity: 0.8;
}

#rock{
    background-color: #01031b;
}

#paper{
    background-color: #629e8c;
}

#scissors{
    background-color: #252e36;
}

p{
    font-weight: bold;
    margin-bottom: 10px;
}

.your-score span{
    color: rgb(11, 11, 172);
}

.machine-score span{
    color: rgb(221, 76, 19);
}


section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin-left: auto;
   margin-right: auto;
}

.emogi-human,
.emogi-machine {
    font-size: 50px;
    margin: 0; /* remove os deslocamentos laterais */
}

.point-human,
.point-machine {
    display: flex;
    flex-direction: column;
    align-items: center; /* centraliza horizontalmente */
    text-align: center;  /* centraliza o texto */
}

.point-human span,
.point-machine span {
    margin-bottom: 8px;
}

#human-choice,
#machine-choice {
    font-size: 20px;
    color: #000000;
}