* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styles */
  body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    line-height: 1.6;
  }
  
  /* Header styles */
  header {
    background-color: #000;
    padding: 20px;
    text-align: center;
  }
  
  header h1 {
    font-size: 3em;
    margin-bottom: 10px;
  }
  
  header p {
    font-style: italic;
    color: #aaa;
  }
  
  /* Navigation styles */
  nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #0af;
    font-weight: bold;
  }
  
  nav ul li a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  /* Main content */
  main {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
  }
  
  /* Sections */
  section {
    margin-bottom: 40px;
  }
  
  section h2 {
    color: #0af;
    margin-bottom: 10px;
  }
  
  /* List */
  ul {
    list-style-type: square;
    padding-left: 20px;
  }
  
  /* Footer */
  footer {
    background-color: #000;
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
    color: #666;
    margin-top: 40px;
  }

  img {
    display: block;
    margin: auto;
  }

  body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    color: #ffffff;
    background-color: #000000; /* All Blacks theme */
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: 'Black Ops One', sans-serif;
    font-size: 18px;
    color: #fff;
    background-color: #000;
  }