body{ /* the body, shit hide it */
    background-color: thistle; /* adds colour to the background */
    text-align: center; /* makes all text centered */
}

h1{ /*the class */ 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; /* just the font */
    font-size: 40px; /* font size 🥲 */
    padding-top: 20px; /* how close somthin can get until in cany move */
    padding-bottom: 20px; /* same shit but on the bottom */
}

p{ /*the class */
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; /* the font */
    font-size: 28px; /* font size like how fuckin big it is */
}

.box{
      border: 2px solid #000; /* Black border */
      padding: 20px; /* Space inside the box */
      margin: 150px; /* Space outside the box */
      background-color: #f9f9f9; /* Light gray background */
      width: 800px; /* Width of the box */
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}