* {
    box-sizing: border-box;
}

body {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;

    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #222;
}

header,
footer {
    padding: 20px 0;
}

header {
    border-bottom: 1px solid #ccc;
}

.site-logo {
    width: 160px;
    height: auto;
}

.header-image {
    display: flex;
    justify-content: left;
    align-items: center;

    min-height: 220px;
    padding: 20px;

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.194),
            rgba(255, 255, 255, 0.403)
        ),
        url("/assets/media/000000030026.jpg");

    background-size: cover;
    background-position: center;
}

footer {
    margin-top: 40px;
    border-top: 1px solid #ccc;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

a {
    color: #245c4f;
}

img {
    max-width: 100%;
}

button,
.button {
    display: inline-block;
    padding: 10px 15px;

    color: white;
    background: #245c4f;
    border: 0;
    text-decoration: none;
}