/* style.css */
body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  background-color: #f5f7fa; /* soft light gray-blue */
  color: #333;                /* dark text */
}
.container {
  max-width: 600px;
  margin: 100px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
h1 {
  margin-bottom: 10px;
}
p {
  margin: 20px 0;
  line-height: 1.4;
}
.social-icons a {
  text-decoration: none;
  margin: 0 10px;
  font-size: 24px;
  color: #555;
}
.social-icons a:hover {
  color: #111;
}
