*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    width: 100%;
    height: 100vh;
    background:linear-gradient(210,#fff,#444);
    display: grid;
    place-content: center;
}
.container{
    width: 300px;
    padding: 20px 30px;
    background: rgb(39, 36, 36);
    border-radius: 5px;
    box-shadow: 0 0 5px transperent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}
.container .time h2{
    padding: 20px;
    background: white;
    border-radius: 50%;
    color: black;
    border:4px solid black;
}
.container h2{
    font-size: 3.5em;
    font-weight: 580;
}
.container .input-field{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-direction: column;
}
.container .input-field label{
    font-size: 0.9em;
    font-weight: 510;
}
.container .input-field input{
    padding: 8px 10px;
    width: 200px;
    border-radius: 5px;
    outline: none;
    border: 4px solid black;
    color: black;
    font-size: 1.2em;
    font-weight: 510;
    text-align: center;
}
.container .action-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}
.container .action-container button{
    padding: 8px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: all ease-in 0.2s;
    outline: none;
    border: 2px solid currentColor;
    font-weight: 510;
}
#btn-start{
    background: rgb(118, 174, 33);
    color: white;
}
#btn-reset{
    background: rgb(224, 20, 20);
    color: white;
}
.container .action-container button:active{
    scale: 0.95;
}

