body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fdf6f0;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  background: #ffffffcc;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

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

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

.social-buttons a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  color: white;
  background: #a5c9ca;
  padding: 10px 20px;
  border-radius: 25px;
  transition: background 0.3s;
}

.social-buttons a:hover {
  background: #6da6a8;
}