/******************************************
/* /* CSS */
body{
    background-color: #F1EDEE;
    background-color: var(--bgc);
    transition: background-color 1s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    user-select: none;
}

h1{

    text-align: center;
    background-color: #79e7ee;
    border: white 2px solid;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

h2{
    text-align: center;
    /* font-size: 1000px; Not working but when I put font in for timr section it works??? */

}
/* Timer Section ===================================== */
.timerSection{
    height: 25vh;
    width: 100%;
    display: flex;
    align-items: center; 
    justify-content: center;
   font-family: 'Roboto', sans-serif;
   font-size: 500px;
}


    



 
/* Timer Section=======================================================*/
.working:hover{
    background-color:#0B7189 ;
    transition: 1s;
    border-radius: 30px;

}

/* progress bar */
  progress {
    border-radius: 2px;
    width: 100%;
    height: 12px;
   
  }
  
  progress::-webkit-progress-bar {
   background-color: rgba(0, 0, 0, 0.1);;
  }
  
  progress::-webkit-progress-value {
    background-color: blue;
  }
  
  /* progress bar */

  .timer {
    padding: 20px;
    text-align: center;
  }
  
  .clock {
    margin-top: 17px;
    margin-bottom: 4px;
    font-size: 5rem;
    line-height: 1;
    display: flex;
    align-items: end;
    font-family: arial, sans-serif;
    justify-content: center;


  }
  
  .mode-button {
    font-size: 16px;
    height: 28px;
    cursor: pointer;
    box-shadow: none;
    font-weight: 300;
    color: blue;
    border: 1px solid blue;
    margin: 0px;
    border-radius: 4px;
    padding: 2px 12px;
    background: none;
  }
  
  .mode-button.active {
    border-color: blue;
  }
  
  .main-button {
    cursor: pointer;
    box-shadow: rgb(235, 235, 235) 0px 6px 0px;
    font-size: 22px;
    height: 55px;
    text-transform: uppercase;
    color: hsl(175, 26%, 41%);
    font-weight: bold;
    width: 200px;
    background-color: blue;
    border-width: initial;
    border-style: none;
    margin: 20px 0px 0px;
    padding: 0px 12px;
    border-radius: 4px;
    transition: color 0.5s ease-in-out 0s;
  }
  
  button:focus, button:active {
    outline: none;
  }
  
  .main-button.active {
    transform: translateY(6px);
    box-shadow: none;
    outline: none;
  }
  
  .hidden {
    display: none;
  }
  
  @media screen and (max-width: 550px) {
    .clock {
      font-size: 8rem;
    }
  }
  

/* Toggles==================================================== */





/* Toggles==================================================== */





/* Task Area==================================================== */






/* Lofi Music ================================================ */

/* Lofi Musi===========================================c */
/*******************************************/

/* Box Model Hack */
*{
    box-sizing: border-box;
  }
  
  /******************************************
  /* LAYOUT
  /*******************************************/
  
  
  
  /******************************************
  /* ADDITIONAL STYLES
  /*******************************************/
  



