/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
  padding: 20px;
}

/* Heading */
h1 {
  color: #0077cc;
  margin-bottom: 10px;
}

/* Paragraph */
p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Optional: center content */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
