/* Add this CSS to your styles.css */

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html img{
    max-width: 400px;
  }
  
  @media (max-width: 600px) {
  html img {
      max-width: 200px; /* Set max width to 200px on mobile */
    }
  }
  
  html, body {
    height: 100%;  /* Make sure the HTML and body take the full height */
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #121212; /* Dark background */
    color: #f1f1f1; /* Light text color */
    line-height: 1.6;
    display: flex;
    flex-direction: column;  /* Stack content vertically */
    justify-content: space-between;  /* Push footer to bottom */
  }
  
  header, section {
    padding: 20px;
    text-align: center;
  }
  
  h1, h2 {
    font-size: 2em;
    color: #ffffff; /* Light text for headings */
  }
  
  ul {
    list-style-type: none;
  }
  
  a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2em;
    margin: 10px;
    display: inline-block;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: #ff4081; /* Pink hover effect */
  }
  
  a i {
    margin-right: 10px;
  }
  
  /* Style social media icons */
  ul li {
    margin-bottom: 15px;
  }
  
  ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Footer Styling */
  footer {
    background-color: #1e1e1e;
    padding: 20px;
    text-align: center;
    width: 100%;  /* Ensure it spans the entire width */
    margin-top: auto;  /* Push it to the bottom */
  }
  
  footer p {
    color: #bbb;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    h1 {
      font-size: 1.5em;
    }
    h2 {
      font-size: 1.25em;
    }
  }
  