body {
    display: flex;       /* Use Flexbox for layout */
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    height: 100vh;      /* Set the body height to 100% of the viewport height */
    margin: 0; 
    background-color: black;    
    font-size: 32px;     /* Remove default body margin for full coverage */
  }

  p {
    /* Optional: Add some styling to the paragraph to make it visible */
    padding: 20px;
    color: white;
    text-align: center;
  }

  span{
    color: red;
  }