body {
  margin: 0;
  padding: 0;
  background-color: #fef6db;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffcd00;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.social-icons {
  margin: 1.5rem 0;
}

.social-icons a {
  margin: 0 10px;
  font-size: 2rem;
  color: #000000;
  text-decoration: none;
  transition: transform 0.2s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ffcd00;
}

.footer {
  font-size: 0.95rem;
  color: #555;
}
