
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5dc; 
  }
  
  #header {
    background-color: #000;
    color: #ff0000;
    text-align: center;
    padding: 10px 0;
  }
  
  #header h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
  }
  
  #navigation {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
  }
  
  #navigation a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
  }
  
  #picture {
    text-align: center;
    margin-top: 20px;
  }
  
  #picture img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  #gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px;
  }
  
  .gallery-item {
    width: 200px;
    margin: 10px;
    text-align: center;
  }
  
  .gallery-item img {
    max-width: 100%;
    border-radius: 8px;
  }
  
  #footer {
    background-color: #000;
    color: #ff0000;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: relative; 
    margin-top: 20px; 
  }
  .image-text {
    color: #000; 
    font-weight: bold;
  }