* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;

    background: #ffffff;
    /*color: #111111;*/
}

.site-main {
    width: 100%;
    min-height: 95vh;
    flex: 1;
    padding: 12px;
}

/*
    Footer
*/

.site-footer {
    /*border-top: 1px solid #000000;*/
    border-top: 2px solid grey;
    background-color: #eae9e9;
}

.site-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    padding: 0 12px;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    color: #000000;
}


/*
    Mobile
*/

@media (max-width: 720px) {
    .site-header-inner,
    .site-footer-inner {
        flex-direction: column;
        align-items: flex-start;

        padding-top: 10px;
        padding-bottom: 10px;
    }

    .site-nav,
    .footer-links {
        flex-wrap: wrap;
        gap: 10px;
    }

    .page-title {
        font-size: 28px;
    }
}
