*{
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #919191;
    height: 100vh;

}
.container{
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    text-align: center;

}

label {
    font-size: 23px;
    font-weight: bold;
}

#count{
    margin-top: 10px;
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    outline: none;
    border: 1px solid black;

}

.btns button{
    gap: 20px;
    margin-top: 10px;
    padding: 5px;
}
#result{
    
    /* border: 1px solid black; */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    /* margin-top: 10px;
    min-width: 150px;
    max-width: 300px; */
    margin: 20px auto;
    
 
    
    
}

.box{
    width: 60px;
    height: 60px;
    background-color: #313131;
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    
}

.box input{
    width: 100%;
    height: 100%;
    text-align: center;
}