/* Reset and base styles */
body {
  margin: 0;
  font-family: sans-serif;
  background-color: white;
  color: black;
}

/* Banner styles */
.banner {
  background: url('../background_dark.png') no-repeat center center/cover;
  height: 300px; /* adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.banner h1 {
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin: 0;
  font-size: 2rem;
}

.background-top {
  text-align: center;
}

.main-content {
  padding: 20px; /* only this area gets padding */
}

h1, h2, h3 {
  padding-bottom: 10px;
}

.section {
  padding: 30px;
}
