/* Fontti ja perustyyli */
body {
  margin: 0;
  font-family: 'Arial', Arial, Helvetica, sans-serif;
  background-color: #dcdad4;
  color: #333;
  line-height: 1.6;
}

/* Navigaatio ja otsikko */
header {
  background-color: #2c2c2c;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 2px;
  line-height: 1.6;
}

nav ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

h2, h3 {
  font-family: Georgia, serif;
  color: #2c2c2c;
}

ul {
  padding-left: 20px;
}

footer {
  background-color: #2c2c2c;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

/* Kuva tyyli */
.kuva {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border: 4px solid #2c2c2c;
}
.hero {
  background-image: url('tausta.jpg');
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.2); /* tummentaa taustakuvaa hieman */
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.2rem;
}


