/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styles */
  body {
    background-color: #D4D7D9;
    color: #3D4435;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Container styles */
  .container {
    text-align: center;
    padding: 20px;
  }
  
  /* Main 404 text */
  .container h1 {
    font-size: 10rem;
    font-weight: bold;
    color: #3D4435;
    margin-bottom: 10px;
  }
  
  /* Subtitle */
  .subtitle {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  /* Message */
  .message {
    font-size: 1.1rem;
    color:#3D4435;
    margin-bottom: 20px;
  }
  
  /* Home button */
  .home-button {
    text-decoration: none;
    background-color: #3D4435;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .home-button:hover {
    background-color: #cc0000;
  }
  