/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
  }
  
  /* Basic styling */
  body {
    font-family: Arial, sans-serif;
  line-height: 1.6;
  /* Add background image */
  background-image: url('pexels-madison-inouye-1101122.jpg');
  background-size: cover; /* Adjusts the background image size */
  background-repeat: no-repeat; /* Prevents the background image from repeating */
}
  
  header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
  }

  a{
      float:right;
      text-decoration: none;
      font-weight: bold;
      margin-right: 20px;
      color: black;
  }
  
  main {
    padding: 2rem;
  }
  
  section {
    margin-bottom: 2rem;
  }
  
  h2 {
    color: #333;
  }
  
  ul {
    list-style-type: none;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
  }
  
