*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: url('https://cdn.pixabay.com/photo/2015/11/02/18/32/water-1018808__480.jpg') no-repeat center center/ cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    width: 50%;
    height: 300px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 0 5px;
    text-align: center;
}
#timer{
    width: 100%;
    font-size: 72px;
    margin: 0 auto;
    padding: 60px 10px;
    color: rgba(103, 81, 2, 0.822);
    text-align: center;
}
.buttons{
    text-align: center;
}
button{
    margin: 0 10px;
    border: none;
    font-size: 2rem;
    
}
button i{
    /* font-size: 2rem; */border-radius: 2px;
    padding: 10px;
    color: rgb(255, 255, 255);
}

#play{
    background-color: rgba(1, 152, 1, 0.858);
    
}
#pause{
    background-color: rgba(221, 99, 17, 0.858);
}
#reset{
    background-color: rgba(201, 6, 6, 0.858);
}
@media (max-width: 700px){

    .container{
        width: 50%;
        height: 200px;
        background-color: white;
        border-radius: 20px;
        box-shadow: 0 0 5px;
        text-align: center;
    }

    #timer{
        width: 100%;
        font-size: 45px;
        margin: 0 auto;
        padding: 30px 10px;
        color: rgba(78, 61, 2, 0.822);
        text-align: center;
    }
    button{
        margin: 0 10px;
        border: none;
        font-size: 1.5rem;
        
    }
}

