body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: right;
    padding: 10px;
}

header img {
    max-width: 100%;
    height: auto;
}

nav {
    background-color: black;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #00ff00; /* vihreä väri linkeille */
}

.content {
    position: relative;
    z-index: 1;
    background-image: url('tausta.png'); /* Vaihda kuva */
    background-size: contain; /* Aseta taustakuvan occupasy */
    background-repeat: no-repeat;
    padding: 20px;
}
/*

.content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
*/
.hallitus-member {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.hallitus-member-info {
    flex: 1;
}

.hallitus-member-image img {
    max-width: 100%;
    height: auto;
}

footer {
    background-color: black;
    padding: 10px;
    text-align: center;
}

/* Responsiivisuus */
@media only screen and (max-width: 600px) {
    nav li {
        display: block;
        margin-bottom: 10px;
    }
}
