/* styles.css */
:root {
  --primary-green: #40a578;
  --black: #000000;
  --white: #ffffff;
  --gray-bg: #f9f9f9;
  --font-family: 'Inter', sans-serif;
  --link-hover-bg: #eaf5ee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--gray-bg);
  font-family: var(--font-family);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: var(--black);
}

.container {
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  width: 95%;
  max-width: 600px;
  text-align: center;
}

.header .brand {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: -0.5px;
}

.header .tagline {
  font-size: 1.25rem;
  color: var(--black);
  font-weight: 400;
  margin-top: 0.5rem;
}

.summary {
  margin: 1.5rem 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  text-align: left; /* Align the text to the left */
}

.content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.manifesto .manifesto-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-green);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.manifesto .manifesto-link:hover {
  background-color: var(--link-hover-bg);
}

.email .email-link {
  font-size: 1rem;
  color: var(--black);
  text-decoration: none;
  font-weight: 400;
  border-bottom: 1px dashed var(--black);
  transition: all 0.2s ease;
}

.email .email-link:hover {
  color: var(--primary-green);
  border-bottom-color: var(--primary-green);
}

footer {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #666;
}
