/******************************************
/* CSS
/*******************************************/

/* Box Model Hack */
*{
  box-sizing: border-box;
}

/******************************************
/* LAYOUT
/*******************************************/
body { 
  font-family: system-ui; 
  display:flex; 
  flex-direction:column;
  align-items:center; gap:1rem; 
  margin-top:3rem; 
}
button { 
  padding:.6rem 1rem; 
  font-size:1.1rem; }
#advice { 
  max-width:32ch; 
  text-align:center; 
  font-size:1.4rem; }


/******************************************
/* ADDITIONAL STYLES
/*******************************************/
