body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  .error-container {
    text-align: center;
    max-width: 400px;
  }
  
  h1 {
    font-size: 3em;
    color: #ED0677;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 20px;
  }
  
  img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
  }
  
  .btn-home {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ED0677;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .btn-home:hover {
    background-color: #333;
  }