body {
    display: flex;               /* turn body into flex container */
  flex-direction: column;      /* stack items vertically */
  justify-content: center;     /* center vertically */
  align-items: center;         /* center horizontally */
  min-height: 100vh;           /* take full viewport height */
  margin: 0;                   /* remove default body margin */
  font-family: 'Inter', sans-serif;
}
h1{
    font-weight: 700;
  color: #000000;
  font-size: 120px;
    align-items: center; 
  }

p {
  font-weight: 400;
  color: #000000;
  font-size: 30px;
  margin-top: 5px;    
  margin-bottom: 5px; 
  }
  
  .box {
  margin: 0;           /* remove default spacing outside */
  padding: 10px;       /* space inside the box */
  border: 1px solid #333; /* optional border */
  background-color: #f9f9f9; /* optional background */
  line-height: 1.2;    /* tighter line spacing inside */
  max-width: 400px;    /* optional: limit width */
}