@import url('https://fonts.googleapis.com/css2?family=Allerta+Stencil&display=swap');
body{
    margin: 0;
    background: linear-gradient(to left bottom, rgb(52, 106, 119), rgb(150, 192, 191));
    min-height: 100vh;
    font-family: "Allerta Stencil", sans-serif;
}

.container{
    margin: 0 auto;
    max-width: 400px;
    text-align: center;
    padding: 20px;

}

.title {
    font-size: 50px;
    margin-bottom: 10px;
}

.timer {
    font-size: 80px;
}
button {
    font-family: "Allerta Stencil", sans-serif;
    font-size: 20px;
    padding:10px 20px;
    border-radius: 20px 5px;
    border-color: rgba(0, 128, 128, 0.8);
    margin: 10px;
    cursor: pointer;
}

button:hover{
    opacity: 0.9;
    box-shadow: 0px 0px 10px rgba(30, 10, 10, 0.8);
    transition-duration: 0.3s;
}

.start {
    background-color: rgba(0, 200, 128, 0.4);
}

.stop {
    background-color: rgba(200, 128, 128, 0.4);
}

.reset{
    background-color: rgba(200, 200, 200, 0.4);
}


