@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Rajdhani:wght@700&display=swap');
body{
    font-family:  'Inter', sans-serif;
    color:#A1A1AA;
    background-color: #18181B;
}
header{
    margin-left: 10em;
    line-height: 0.2em;
}
.clock{
    font-family: 'Rajdhani', sans-serif;
    padding-top: 1em;
    width: 20.8em;
    height: 9.4em;
    margin-left: 5em;
    margin-top: 6em;
    border-radius: 0.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color:#18181B;
}
button{
   margin-bottom: 3em;
   padding: 0.75em;
   width: 4.5em;
   height: 4.5em;
   border-style: none;
   border-radius: 0.25em;
   background-color: #84CC16;
}
#pause-button{
    display: none;
}
#counter{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4em;
    color: #F4F4F5;
}
section{
    width: 70em;
    height: 37.125em;
    margin-left: 8em;
    display: flex;
    align-items: center;
    flex-direction: row;
    background-color: #18181B;
    gap: 1em;
}
.container{
    width: 30.875em;
    height: 33.125em;
    border-radius: 0.75em ;
    padding: 0.5em;
    justify-content: space-between;
    gap: 1em;
    margin-left: 1.6em;
    background-color: #18181B;
    border-color: #27272A;
    border-style: solid;
    border-width: 0.15em ;
    line-height: 0.2em;
}
.modo{
    padding-top: 1em;
}
#nextCycle, #currentCycle{
  border-radius: 0.25em ;  
  display: flex;
  justify-content:flex-end;
  align-items:center;
  padding: 0.25em  0.5em ;
}
#container-addTask{
    align-items: center;
    flex-direction: row;
    display: flex;
    margin-top: 2.5em;
}
#inputTask{
    width: 30em;
    height: 2em;
    padding: 0.5em ;
    border-radius: 0.25em;
    background-color: #27272A;
    border-style: none;
    color: #A1A1AA;
    margin-bottom: 2.9em;
}
#addTask{
    width: 5.5em;
    height: 3em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1em 0.75em;
    margin-left: 1em;
    border-style: none;
    border-radius: 0.25em;
    background-color: #84CC16;
    color: #FAFAFA;
}
#container-task{
    height: 20em;
    width: 30.8em;
    margin-top: 4em;
    overflow-y: scroll;
}
.divider{
    border-bottom:  0.15em solid #27272A; 
}




