* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;

    margin: 0;
    padding: 0;
    flex-grow: 1;

    display: flex;
    flex-direction: column;

    background-image: url( '../../../images/frontend/frontend_background_desktop_00_1920_1080.jpg' );
    background-size: cover;
    background-position: 50%;
}

header {
    padding-top: 2.5rem;
    padding-left: 5rem;
    padding-right: 5rem;
}
header #header_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
header #header_inner img {
    max-height: 72px;
}


main {
    flex-grow: 1;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    width: 100%;
}

footer {
    font-family: 'Poppins', sans-serif;
    padding: 16px;
    display: flex;
    flex-direction: row;
    row-gap: 16px;
    column-gap: 24px;
    align-items: center;
    jsutify-content: space-evenly;
}
footer .footer_inner {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;

    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 64px;
    justify-content: space-between;
    color: var( --blue-color );
}
footer .footer_inner a {
    color: inherit;
    text-decoration: inherit;
}

@media only screen and ( max-width: 600px ) {
    body { background-image: url( '../../../images/frontend/frontend_background_mobile_00_1080_1920.jpg' ); }
    
    header { padding: 20px 35px 10px 35px; }
    header #header_inner #header_left { order: 1; }
    header #header_inner #header_left img { max-height: 24px; }
    header #header_inner #header_right { order: 0; }
    header #header_inner #header_right img { max-height: 32px; }

    footer { row-gap: 8px; font-size: 0.75rem; flex-direction: column; }
    footer #footer_inner_legal { font-size: 0.6rem; justify-content: center; column-gap: 24px; }
}
