/* 404.css — Custom error style for a personal home server */

body {
  background-color: #0f1117;
  color: #d0d0d0;
  font-family: 'Fira Code', 'Courier New', monospace;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  flex-direction: column;
  text-align: center;
}

h1 {
  font-size: 6rem;
  color: #ff4c4c;
  margin: 0;
  text-shadow: 0 0 10px #ff4c4c44;
}

p {
  font-size: 1.5rem;
  margin: 20px 0;
  color: #ccc;
}

a.button {
  display: inline-block;
  padding: 12px 28px;
  margin-top: 20px;
  background-color: #1f1f1f;
  border: 2px solid #00bfa6;
  color: #00bfa6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

a.button:hover {
  background-color: #00bfa6;
  color: #0f1117;
  box-shadow: 0 0 10px #00bfa6;
}

.terminal-box {
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 191, 166, 0.2);
  max-width: 600px;
  width: 90%;
}
