body{
    /* background-color: rgb(4, 7, 14); */
    background: url('https://images.pexels.com/photos/604684/pexels-photo-604684.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-repeat: no-repeat;
    background-size:cover;
}

/* logo */
#logo{
    background-image: url('./img/img.png');
    position: absolute;
    top: 10px;
    left: -55px;
    height: 55px;
    width: 55px;
    background-size: cover;
}

/* heading-c0ntainer */
#heading{
    display: flex;
    justify-content: center;
}
#heading-container{
   
 position: absolute;
 top: 130px;

}
#heading-container h1{
        font-size: 30px;
        font-weight: bold;
        background: -webkit-linear-gradient(60deg, #00f6f6, #f5fd01);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-family: monospace;
    
    
}

/* Main container */
.container{
    background-color: #fff;
    padding: 20px 0;
    width: 40%;
    min-width: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    position: absolute;
    border-radius: 7px;
}

/* styling timerDisplay box */
.timerDisplay{
    position: relative;
    width: 92%;
    background:#fff;
    left: 4%;
    box-shadow: 0 0 10px rgba(0, 5, 9, 0.245);
    padding: 40px 0;
    font-size: 40px;
    color: black;
    font-family: sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 4px;
    font-weight: 500;

}

/* Button container */
.buttonsContainer{
    width: 90%;
    margin: 60px auto 0 auto;
    display: flex;
    justify-content: space-around;
}
.buttonsContainer button{
    width: 120px;
    height: 45px;
    background: #205e94;
    color: #fff;
    border: none;
    font-family: sans-serif; 
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    outline: none;

}
.buttonsContainer button:nth-child(2){
    background-color: red;
}
.buttonsContainer button:nth-child(3){
    background-color: green;
}