body{
    background-color: #132536;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.score-container {
    display: flex; 
    gap: 10px; 
    border: 3px solid white; 
    padding: 10px; 
    border-radius: 10px; 
    width: fit-content; 
    margin: auto; 
}

.move-container{
    color: white;
    text-align: center;
    font-size: 25px;
}

.move-icons{
    gap: 20px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.move-container-box{
    text-align: center;
    gap: 30px;
    color:aliceblue;
    font-size:20px;
}

.score-box{
    background-color: white;
    color: black;
    padding:0 20px 0 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.1);
    width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title-header{
    color: white;
    font-size: 50px;
    text-align: center;
}

.show-score{
    font-size: 30px;
    margin: 0;
    margin-bottom: 15px;
    font-weight: 500;
    color: rgb(15, 27, 23);
}

.button-icon{
    background: none;
    border: 3px solid rgb(140, 231, 122); 
    border-radius: 20px;
}

.icon{
    width: 80%;
    height: 80%;
    cursor: pointer;

}

.result{
text-align: center;
font-size: 40px;
color: rgb(83, 209, 83);
}

 .btn-container{
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 10px;
 }

.btn{
    background-color: aquamarine;
    padding: 15px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .title-header {
        font-size: 40px;
    }
    .icon{
        width: 80%;
        height: 80%;
    }
    .move-icons{
        gap: 10px;
    }

    .show-score{
        font-size: 20px;
    }
    

}