/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Basic body styling */
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
  }
  
  header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  header h1 {
    font-size: 2.5rem;
    color: #2a9d8f;
  }
  
  header p {
    font-size: 1.2rem;
    color: #555;
  }
  
  /* Styling for the blog list */
  #blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .blog-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .blog-item h2 {
    font-size: 1.8rem;
    color: #264653;
  }
  
  .blog-item h2 a {
    text-decoration: none;
    color: #264653;
  }
  
  .blog-item h2 a:hover {
    color: #2a9d8f;
  }
  
  .blog-item p {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
  }
  
  footer {
    text-align: center;
    margin-top: 50px;
  }
  
  footer a {
    text-decoration: none;
    color: #2a9d8f;
  }
  
  footer a:hover {
    color: #264653;
  }

  a {
    color: #ADD8E6; /* Light blue color */
    text-decoration: none; /* Remove underline if desired */
  }

  a:hover {
    text-decoration: underline; /* Add underline on hover if desired */
  }
