body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #222;
}

h1, h2, p{
    color: #222;
}

header {
    background: #2f3e46;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.4rem;
    font-weight: bold;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.hero {
    background: url('bilder/wood_texture.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.content {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}


.card {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

footer {
    background: #2f3e46;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}


