body {
    margin: 0;
    font-family: 'Helvetica Neue';
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(to bottom, white 0%, white 100%);
    transition: background-color 1s linear;

  }
  
  #some_div {
    font-size: 20rem;
    text-align: center;
    font-weight: 900;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    position: relative;
  }
  
  #countdown_text {
    display: block;
  }
  
  #teacup_icon {
    color: black;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: none;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;  
}
  
  #actions {
    width: 100%;
    text-align: center;
    position: fixed;
    bottom: 0;
    height: 15vh;
  }
  
  #actions a {
    font-size: 2rem;
    padding: 1rem;
    padding-left: 3rem;
    padding-right: 3rem;
    border: 2px solid black;
    color: black;
    text-decoration: none;
    border-radius: 100px;
  }
  
  a.restart {
    font-size: 5rem;
  }
  