/* Use Roboto for a modern, clean look */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: center;
}

header {
  background-color: #1f1f1f;
  padding: 50px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

header h1 {
  font-size: 60px;
  margin: 0;
  color: #81d4fa; /* calming blue for title */
}

header h2 {
  font-size: 24px;
  margin-top: 10px;
  color: #cfd8dc;
}

.photo-container {
  margin: 40px auto;
}

.photo-container img {
  width: 70%;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.7);
}

.story {
  max-width: 850px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 20px;
}

.gofundme {
  margin: 40px 0;
}

.gofundme a {
  display: inline-block;
  padding: 16px 35px;
  background-color: #ff7043;
  color: white;
  font-size: 22px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.gofundme a:hover {
  background-color: #e64a19;
}

.resources {
  background-color: #1f1f1f;
  padding: 35px 20px;
  margin: 50px auto;
  max-width: 900px;
  border-top: 4px solid #d32f2f;
  border-bottom: 4px solid #d32f2f;
  text-align: left;
  border-radius: 10px;
}

.resources h2 {
  color: #d32f2f;
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}

.resources ul {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 20px;
}

.resources li {
  margin: 10px 0;
  font-size: 18px;
}

.resources a {
  color: #81d4fa;
  font-weight: bold;
  text-decoration: none;
}

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

footer {
  margin: 50px 0 30px 0;
  font-size: 14px;
  color: #999;
  text-align: center;
}