* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
   
  /*html,
  body {
    height: 100%;
    margin: 0;
  }
   
  body {
    align-items: center;
    background-color: #ffd54f;
    display: flex;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  }
   
  .container {
    color: #333;
    margin: 0 auto;
    text-align: center;
  }
   
  h1 {
    font-weight: normal;
    letter-spacing: 0.125rem;
    text-transform: uppercase;
  }*/
   
  .timerList {
    display: inline-block;
    font-size: 1.5em;
    list-style-type: none;
    padding: 1em;
    text-transform: uppercase;
  }

  .top-heading {
    color: rgb(13, 13, 255)
  }
   
  /*li span {
    display: block;
    font-size: 4.5rem;
  }*/
   
  .timerMessage {
    font-size: 4rem;
  }
   
  #timerContent {
    display: none;
    padding: 1rem;
  }
   
  .emoji {
    padding: 0 0.25rem;
  }
   
  @media all and (max-width: 768px) {
    h1 {
      font-size: 1.5rem;
    }
   
    li {
      font-size: 1.125rem;
      padding: 0.75rem;
    }
   
    li span {
      font-size: 3.375rem;
    }
  }

  .divCenter {
    margin: auto;
    width: 50%;

  }
  .center-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }