/* Reset some default styles for consistent rendering across browsers */
/* You might want to use a CSS reset or normalize.css for this purpose */
body, h1, h2, p {
    margin: 0;
    padding: 0;
  }
  
  /* Basic styling for the entire page */
  body {
    font-family: "Comic Sans MS";
    font-size: 16px;
    line-height: 1.5;
    background-color: #f0f0f0;
    color: #333;
  }
  
  /* Header styles */
  header {
    background-color: #333;
    color: #fff;
    padding: 10px;
  }
  
  /* Navigation menu styles */
  nav {
    display: flex;
    justify-content: center;
    background-color: #444;
    padding: 10px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav li {
    margin: 0 15px;
  }
  
  nav a {
    text-decoration: none;
    color: #fff;
  }
  
  /* Main content area */
  .main-content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Footer styles */
  footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
  }
  
  /* Responsive media queries */
  @media (max-width: 768px) {
    nav {
      flex-direction: column;
    }
  
    nav li {
      margin: 10px 0;
    }
  }
  
