body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #17171F;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .header {
    display: flex;
    justify-content: center;
    padding: 10px 0;
  }
  
  .container {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    margin-top: 50px;
  }
  
  h1 {
    font-size: 2em;
    margin-bottom: 15px;
  }
  
  p {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  a {
    background-color: #333;
    color: #FFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
  }
  
  a:hover {
    background-color: #444;
  }
  
  img {
    width: 200px;
    height: auto;
    margin-top: 20px;
  }
  
  /* Media Queries for Responsiveness */
  
  @media only screen and (max-width: 768px) {
    h1 {
      font-size: 1.5em;
    }
  
    p {
      font-size: 1em;
    }
  
    img {
      width: 150px;
    }
  
    .container {
      margin-top: 30px;
    }
  }
  