/* Basic container styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
  }
  
  /* Container for the image and button */
  .container {
    position: relative;
    width: 100%;
    max-width: 500px; /* Limiting width of content */
    text-align: center;
  }
  
  /* Image styling */
  .error-img {
    width: 100%;
    height: auto;
    max-width: 100%; /* Allow the image to resize based on screen size */
    max-height: 500px;  /* Limit the max height */
    object-fit: contain;  /* Maintain aspect ratio */
    margin-bottom: 20px;
  }
  
  /* Centering the button at the bottom of the page */
  .button-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Button styling */
  button {
    padding: 12px 24px;
    background-color: #2575fc;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  button:hover {
    transform: scale(1.05);
  }
  