* {
    margin: 0;
    padding: 0;
}

:root {
    --color-background: black;
    --color-text: #b7b7b7;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --color-background-footer: #0b0b0b;
    --color-divider: var(--color-text);
}


html {
    font-family: var(--font-family);
    color: var(--color-text);
    background: var(--color-background);
}

img {
    width: 100%;
}

body {
    padding: 2rem;
    max-width: 70rem;
    margin: 0 auto;
}

li {
    list-style: none;
}

a {
    color: currentColor;
    text-decoration: none;
}

strong,
b {
    font-weight: 600;
}

small {
    font-size: inherit;
}

header {
    /* background: red; */
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-divider);
    height: 2rem;
    margin-bottom: 2rem;
}

html,
body {
    height: 100%;
}

body>footer {
    position: sticky;
    top: 100vh;
}

footer {
    border-top: 1px solid var(--color-divider);
    height: 6rem;
    padding: 2rem 0;
    /* background: var(--color-background-footer); */
}

a:hover {
    opacity: 0.5;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.article_imprint {}

.article_imprint h1 {
    margin-bottom: 2rem;
}

.article_home h1 {
    margin-bottom: 4rem;
}

.underContruction_container {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 20rem;
    margin-bottom: 2rem;
}
.logo_header {
    width: 4rem;
    ;
}