@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
   font-family: 'Montserrat', sans-serif;
    
}

.main{
    /* border: 2px solid blue; */
    display: flex;
    /* padding: 2%; */
    justify-content: center;
}
.inner-div{
   
    margin: 0% 2% 0% 2%;
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 300px;
    box-sizing: border-box;
    
    /* background: rgb(2,0,36); */
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 50%, rgba(0,212,255,1) 120%);
    box-shadow: 5px 5px 5px rgba(0,0,0,.2);    
     display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5%;
    padding: 5% 0 1% 0%;
}

.inner-div .inner-head{
    text-align: center;
    font-size: 6em;
    font-weight: 600;
    height: 75%;
    /* width: 50%; */
    border: none;
   
    
    
}
input{
    background: transparent;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
}


input::placeholder{
    /* display: flex; */
    margin: auto;
     font-size: 30%;
    color: white;
    font-weight: 20;
    
}

.inner-div .inner-time-format{
    /* border: 2px solid black; */
    /* height: 100px; */
    width: 100%;
    background-color: rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30%;
}

.inner-div .inner-time-format h2{
    font-weight: 300;
    color: white;
    font-size: 2em;
}

.input-box{
    height: 100px;
}


.second-main{
    display: flex;
    width: 100%;
    /* border: 2px solid green; */
    margin: 1% 0 0 0;
    justify-content: center;
    
}
.second-main .buttons{
    /* width: 25%; */
    margin: 0 20px;
    border: none;
    /* border: 2px solid black; */
    font-size: 1.5em;
    text-align: center;
    border-radius: 50px;
    color: white;
    background: rgb(73, 73, 73);
    cursor: pointer;
    padding: 5px 20px;


}