body{
    margin: 0;
}

.heading{
    text-align: center;
}
.heading h2{
    font-size: 2rem
}

button{
    all: unset;
}

.inp-section{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;

    background-color: rgb(149, 77, 77);
}

.inp-section input{
    height: 1.2rem;
    font-size: 1rem;
    border: 1px solid black;
    border-radius: 10px;
    padding-left: 10px;
    width: 100%;
    margin: 0 20px;

}
.inp-section button {
    padding: 5px 10px 5px 10px;
    border: 1px solid black;
    border-radius: 20px;
    cursor: pointer;
    background-color: antiquewhite;
}

.timer{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-data span{
    font-size: 2rem;
}
.timer-data{
    margin-bottom: 30px;
}

.timer-button button{
    padding: 5px 10px 5px 10px;
    border: 1px solid black;
    border-radius: 20px;
    cursor: pointer;
    background-color: antiquewhite;
}

.timer-data span:nth-child(odd){
    font-size: 3.5rem;
}