/* Perusasetukset ja fontti */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* Yläpalkki */
header {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

/* Sisältöalue */
.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Kuvan asetukset: mukautuu automaattisesti kokoon */
.main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
    border-radius: 4px;
}

.text-block h2 {
    color: #2c3e50;
    margin-top: 0;
}

/* Alapalkki */
footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #2c3e50;
    color: white;
    margin-top: 4rem;
}

