/* base.css: Global styles and resets */

/* Reset some basic elements */
body, h1, h2, h3, p, ul, ol {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set global font style and background */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

/* Utility class for full width */
.full-width {
  width: 100%;
}
