body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #4C443C;

}
div{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    color: rgb(254, 254, 254);
}
input{
    height: 35px;
    width: 73px;
    font-size: large;
    text-align: center;
}

button{
padding: 10px 20px;
background-color: #0f2d32;
color: white;
border: none;
border-radius: 4px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance:none;
    margin: 0;
}

input:focus{
    outline: none;
}

button:hover{
    cursor: pointer;
    background-color: gray;

}
