/*-------------------------------------------------------------------------------------

  Copyright (c) 2014 Pixelzauber GmbH, Switzerland
  CSS definition for main stylesheet

-------------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;500;600&display=swap");



/*
@import url("style.layout.css?v=4");
@import url("style.text.css?v=4");
@import url("style.navigation.css?v=4");
@import url("style.module.css?v=4");
@import url("style.responsive.css?v=4");
*/


/**
 * ANCHOR normalize.css v8.0.1
 * https://github.com/necolas/normalize.css
 *
 */
html {
    line-height: 1.2;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: var(--clx-font-bold);
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}


/**
 * ANCHOR Customising
 *
 */
body {
    font-family: "Inter", "Be Vietnam Pro", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 1.05em;
    line-height: 1.25em;
    color: rgb(51, 51, 51);

    text-align: left;
    -webkit-text-size-adjust: none;
}

.information-wrapper {
    display: flex;
    width: 100dvw;
    min-height: 100dvh;
    justify-content: center;
    align-items: center;
    background-color: rgb(235, 127, 5);
    background-image: url(../images/pixelzauber_icon.svg);
    background-size: 60px auto;
    background-position: 5vw 5vw;
    background-repeat: no-repeat;

    .information {
        margin: 150px 20px;
        width: fit-content;
        max-width: 620px;

        font-family: "Inter", "Be Vietnam Pro", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 2.8em;
        line-height: 1.1em;

        & h1,
        & h2,
        & h3,
        & h4 {
            margin: 0 0 20px 0;
            font-family: "Inter", "Be Vietnam Pro", sans-serif;
            font-size: 36px;
            font-weight: 600;
            color: #ffffff;
        }

        & p {
            margin: 0 0 12px 0;
            font-family: "Inter", "Be Vietnam Pro", sans-serif;
            color: #ffffff;
            font-size: 20px;
            font-weight: 300;
            line-height: 26px;
            hyphens: auto;
        }

        a {
            font-family: "Inter", "Be Vietnam Pro", sans-serif;
            color: #ffffff;
            text-decoration: none;

            &:hover {
                color: #000000;
            }

            .forward {
                padding-right: 20px;
                background: transparent url(images/icon_forward_light.svg) center right no-repeat;
                background-size: 36px auto;
                padding-right: 42px;
            }

            .forward:hover {
                background-image: url(images/icon_forward_dark.svg);
            }
        }

        strong {
            font-family: "Inter", "Be Vietnam Pro", sans-serif;
            font-weight: 500;
        }

    }

}