*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background:linear-gradient(60deg,#8bc34a,#3e473a)
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    width:420px ;
    height:200px;
    background-color: transparent;
    box-shadow: 0px 0px 15px #2f4325;
    border:1px solid #212121 ;
    border-radius: 20px;  
}
.clock{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:400px ;
    height:200px; 
    display:flex;
}
.main{
    display: flex;
}
.label{
    margin-right: 20px;
}
.label p{
display:inline;
margin: 35px;
font-size: 12px;
color:#212121;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#time,#time2 {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #d0e8f3;
    text-shadow: 1px 2px 3px #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.6rem;
}
#time2{
    font-size: 3.2rem;
}
#am-pm{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #d0e8f3;
    text-shadow: 1px 1px 3px #212121;
    font-size: 1.1rem;
    margin-top: 12px;
    font-weight: 600;
    padding: 5px;
}

.btns{
    display: flex;
    justify-content: center;
    margin-top: 50px; 
}
#btn1,#btn2{
    border: none;
    box-shadow: 0px 0px 10px #2f4325;
    height: 2.5rem;
    border-radius: 10px;
    width: 7rem;
}
#btn1:hover{
    border:none;
    font-size: 16px;

    }
#btn2:hover{
    border:none;
    font-size: 16px;
}
#btn1{
    border:1px solid #212121 ;
    border-radius:5px 0 0 5px;
    border-right:none;
    background-color: rgba(255,255,255,0.5)
}
#btn2{
    border:1px solid #212121 ;
    border-radius:0 5px 5px 0;
    border-left:none;
    background-color: transparent;
}
.stopwatch{
    display:none;
}
#Start,#pause,#reset{
    text-align: center;
    width: 5rem;
    height: 2rem;
    border: none;
    border-radius: 8px;
  border-bottom: 1.5px solid #212121;
  border-left: 1.5px solid #212121;
  background-color: rgba(255,255,255,0.1);
  margin-top: 10px;
}
#pause,#reset{
    display:none;
}

   
@media  screen and (max-width:360px) {
    .container{
        width: 260px;
        height: 170px;
    }
    .container #time{
        font-size: 2.6rem;
    }
    .label p{
        margin: 20px;
        font-size: 12px;
        }
        .btns{
            margin-top:
            100px
        }
        #time2{
            font-size: 2.2rem;
            margin-top: 5px;
        }
        #Start,#pause,#reset{
            width: 4.4rem;
            height: 1.8rem;
            margin-top: 20px;

        }
    #am-pm{
        font-size:1rem;
        margin-top:7px;
        padding:2.5;
    }
}