/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* transition: background 0.3s, color 0.3s; */
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #121212;
  color: #ddd;
  padding: 20px;
  text-align: center;
  /* transition: background-color 0.5s ease, color 0.5s ease;
  animation: fadeIn 1s ease-in; */
}

/* @keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
} */

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #aaa;
}
