/* Reset some default browser styles */
body, h1, h2, p, ul {
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Apply a base font size and line height for readability */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* Center content on the screen */
.container {
  max-width: 100%;
  padding: 20px;
  margin: 0 auto;
}

/* Style headings */
h1 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}

h2 {
  font-size: 16px;
  margin-bottom: 15px;
}

/* Style paragraphs */
p {
  font-size: 16px;
  margin-bottom: 15px;
}

/* Style links */
a {
  color: #0077cc;
  text-decoration: none;
}

/* Add styles for navigation menu (optional) */
.nav {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
}

.nav a {
  color: #fff;
  margin: 0 10px;
}

/* Media query for screens smaller than 768px (typical smartphones) */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 18px;
  }

  .container {
    padding: 10px;
  }

  /* You can further adjust styles for smaller screens as needed */
}
