@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

#app{
    height: max-content;
}

body{
    text-align: center;
    font-family: 'Poppins', sans-serif;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: rgb(56, 56, 56);
    color: white;
}

button{
    font-size: 15px;
    border: none;
    border-radius: 3px;
    padding: 5px 12px;
    cursor: pointer;
    color: white;
}

#content{
    font-size: 80px;
    margin: 10px;
}

h1{
    margin: 10px;
}

h3{
    margin-bottom: 20px;
}

#historyContainer{
    margin-top: 70px;
}

#historyLine{
    margin: auto;
    width: max-content;
    display: flex;
    gap: 10px;
    align-items: center;
}

#startButton{
    background-color: rgb(37, 156, 37);
}

#stopButton{
    background-color: rgb(154, 156, 37);
}

#resetButton, #clearButton{
    background-color: rgb(156, 65, 37);
}

#saveButton{
    background-color: rgb(37, 138, 156);
}

#timerButtonContainer button, #clearButton{
    display: none;
}