* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 400px;
    margin: 0 auto;
  }
  
  body {
    background-color: #000;
  }
  
  .header {
    text-align: center;
    padding: 40px;
  }
  
  .header h1 {
    font-family: Arial, sans-serif;
    font-size: 20px;
    color: #eccb3b;
  }
  
  .image {
    object-fit: cover;
    width: auto;
    height: auto;
  }
  
  .image img {
    width: auto;
    height: auto;
    object-fit: cover;
  }
  

  @media (max-width: 600px) {
    .header h1 {
      font-size: 24px;
    }
  

  }
  