/* Global Reset */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

html {
    background: #0a0a0a;
}

body {
    display: flex;
    flex-direction: column;

    min-height: 100vh;
}

main {
    flex: 1 0 auto;
    width: 100%;
}

site-module {
    display: block;
    width: 100%;
}

site-module[name="navigation"] {
    flex: 0 0 auto;
}

site-module[name="footer"] {
    flex: 0 0 auto;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
select {
    cursor: pointer;
}