:root {
    font-size: 62.5%;
}

body,
html {
    width: 100%;
    height: 100%;
}

body {
    font-size: 1.6rem;
background:rgb(50, 105, 126);
background-image: linear-gradient(to bottom right, #ff7f50, #6495ed);
display:flex;

justify-content: center;
align-items:center;

flex-direction: column;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.container{
    width:480px;
    background-color: rgb(242, 233, 233);
 
    display:flex;
   box-shadow:0px  0px 10px;
align-items:center;
flex-direction: column;
padding:1.5em;
font-family:poppins;
gap:1.5em;
border-radius:15px;
font-weight: bold;
}
.time{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:0.6em;
}
.menu{
    display:flex;
    
    flex-direction:row;
  gap:1.2em;
}
select{
    font-size: 14px;
    width: 93px;
text-align :center;
    border:none;
    box-shadow:0px 0px 5px;
    outline: none;
    font-family:'poppins';
    font-weight: bold;
    height:38px;
    border-radius:7px;
    padding:0.3em;

}
#btn, #reset{
   width:200px;
   padding:0.4em;
   text-transform: uppercase;
   letter-spacing:1px;
   font-size:1.8rem;
    font-family:'hammersmith one';
    background:black;
    outline:none;
    color:white;
    border:2px solid ;
    transition:0.3s ease;
   
}
#btn:hover ,#reset:hover{
    transform:translateY(-3px);
}
button{
    box-shadow:0px 0ox 5px;
}
#btn{
    background:blueviolet;
}
.disable{
    pointer-events: none;
    opacity:0.3s;
    cursor:not-allowed;
color:gray;
}
.disablebtn {
    pointer-events: none;
    opacity: 0.3;
    cursor: not-allowed;
    background: gray;
  }
  
  
  @media (max-width:493px){
    .container{
        width:350px;
    }
    .buttonS{
        display:flex;
        flex-direction: column;
        gap:0.5em;
    }
    #btn ,#reset{
        width:320px;
        
    }
  }
  @media (max-width:363px){
    .container{
        width:280px;
    }
    .buttonS{
        display:flex;
        flex-direction: column;
        gap:0.5em;
    }
    #btn ,#reset{
        width:240px;
        
    }
    select{
        width:68px;
        font-size:1rem;
    }
  }