html, body {
    height: 100%;
    background-color: #eeeeee;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif !important;
}

.clear {
    clear: both;
}

div.centered-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

header {
    border-bottom: 1px solid #ddd;
    padding-top: 16px;
    padding-bottom: 16px;
    text-align: center;
    background-color: #ffffff;
}

header div.centered-content {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

header div#header-logo {
    width: 200px;
    flex: 0;
    font-weight: 800;
    line-height: 32px;
    font-size: 20px;
    color: #007aff;
}

header div#header-logo a {
    text-decoration: none;
    color: inherit;
}

header nav {
    flex: 1;
}

header nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 16px;
    color: #3a3a3a;
}

header nav ul li {
    line-height: 32px;
}

header nav ul li a {
    text-decoration: none;
    color: inherit;
}

header nav ul li a:hover {
    text-decoration: underline;
}

header div#header-search {
    flex: none;
    width: 300px;
}

header input {
    border: 1px solid #ddd;
    font-family: inherit;
    height: 20px;
    font-size: inherit;
    padding: 4px 6px;
    border-radius: 4px;
    outline: 0;
    width: 200px;
}

header button {
    outline: none;
    font: inherit;
    color: inherit;
    background: none;

    /*font-family: inherit;
    height: 24px;
    line-height: 24px;
    padding: 4px 6px;
    border: 1px solid #000;
    border-radius: 4px;
    background-color: green;
    background: none;
    font-size: inherit;
    margin: 0;*/
    border: 1px solid #000;
    padding: 4px 6px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 4px;
}

header button:hover {
    border: 1px solid #007aff;
    color: #007aff;
}

main {
    background-color: #ffffff;
    min-height: 400px;
}


footer {
    border-top: 1px solid #cccccc;
    padding: 32px 16px;
    text-align: center;
    font-size: 12px;
}

footer a {
    color: #000;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer div#footer-links {
    display: flex;
    gap: 32px;
    justify-content: center;
}

footer div#footer-links ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: left;
    flex: 1;
    max-width: 250px;
    border-top: 1px solid #dddddd;
}

footer div#footer-links ul li {
    font-size: 14px;
    line-height: 24px;
}

footer div#footer-copyright {
    margin-top: 32px;
}

@media (max-width: 1232px) {
    div.centered-content {
        padding-left: 16px !important;
        padding-right: 16px !important;
        max-width: none;
    }
}

@media (max-width: 850px) {
    header div.centered-content {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

@media (max-width: 600px) {
    footer div#footer-links {
        flex-direction: column;
        gap: 16px;
    }

    footer div#footer-links ul {
        max-width: none;
    }
}