/* Reset some default styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: "Arial", sans-serif;
  color: #333;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5; /* light neutral background */
}

.container {
  text-align: center;
  padding: 2rem;
  background: white;
  border: 2px solid #ddd;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo h1 {
  font-family: "Georgia", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #c71585; /* you can pick a brand color (e.g. deep pink / fuchsia) */
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.social p {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.social a {
  color: #c71585;
  text-decoration: none;
  margin: 0 0.5rem;
}

.social a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #777;
}
