* {
    box-sizing: border-box;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-size: 1rem;
}

blockquote, body, dd, dl, figure, h1, h2, h3, h4, h5, h6, html, li, p, pre, ul {
    margin: 0;
    padding: 0
}

:link {
    text-decoration: none;
}

:link:focus {
    outline: 0;
}

:root {
    --neutral-1: #000;
    --neutral-2: #fff;
    --neutral-3: #ddd;
    --neutral-4: #0044e4;
    --page-width: 1200px;
    font-size: 20px;
    line-height: 1;
}

html {
    -webkit-font-smoothing: antialiased;
    font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
}

body {
    display: flex;   
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: var(--neutral-1);
    position: sticky;
    top: 0;
    width: 100%;
}

.header__actions {
    column-gap: 2rem;
    display: flex;
    flex-direction: row;
    font-size: 80%;
    justify-content: right;
    margin: .8rem auto;
}

.header__action--left {
    flex: 1;
}

.header__actions, main .section, footer {
    max-width: var(--page-width);
    width: 100%;
}

header li {
    list-style-type: none;
}

header a {
    color: var(--neutral-3);
}

header a:hover {
    color: var(--neutral-2);
}

main {
    flex: 1;
}

main, footer {
    margin-bottom: 6rem;
}

.section__title {
    text-transform: uppercase;
}

.section__title--hidden {
    visibility: hidden;
}

.section__hero {
    margin: 4rem 0;
}

.section__hero img {
    height: 100%;
    width: 100%;
}

.section__title--first {
    margin: 8rem 0 .25rem 0 !important;
}

.section__teaser, footer, .section ul, .section p {
    font-weight: 200;
}

.section__title {
    margin: 5rem 0 .4rem 0;
}

.section__subtitle {
    line-height: 1.2;
    margin-top: 2rem;
}

.section__title, .section__subtitle, .section__teaser {
    cursor: default;
}
    
main ul li {
    list-style-type: square;
    margin-left: 1em; /* rather than list-style-position: inside */ 
}

main ul li, main p, footer {
    line-height: 1.5 !important;
}

main a, footer a {
    display: inline-table;
    position:relative;
}

main a:not(.button)::before, footer a:not(.button)::before {
    border-bottom: 2px solid var(--neutral-4);
    bottom:0;
    content:"";
    left:50%;
    position:absolute;
    transition:.2s ease-in-out;
    width:0;
}

main a:not(.button):hover::before, footer a:not(.button):hover::before {
    left:0;
    width:100%
}

main a, main a:visited, main a:active, footer a, footer a:visited, footer a:active {
    color: var(--neutral-4);
}

.section ul, .section p {
    line-height: 1.2;
    margin-top: .8rem;
}

.hoverArrow{
    --arrowHoverOffset: translateX(3px);
    --arrowHoverTransition: 150ms cubic-bezier(0.215,0.61,0.355,1);
    --arrowLineOpacity: 0;
    --arrowSpacing: 5px;
    --arrowTipTransform: none;
    fill: none;
    margin-left: var(--arrowSpacing);
    margin-right: var(--arrowSpacing);
    margin-bottom: 1px;
    position: relative;
    stroke-width: 2px;
    stroke: currentColor;
    top: 0px;
}

.hoverArrow__linePath{
    opacity: var(--arrowLineOpacity);
    transition: opacity var(--hoverTransition,var(--arrowHoverTransition))
}

.hoverArrow__tipPath{
    transform: var(--arrowTipTransform);
    transition: transform var(--hoverTransition,var(--arrowHoverTransition))
}

@media (pointer:fine){
  a:hover .hoverArrow__linePath{
    --arrowLineOpacity: 1
  }
  a:hover .hoverArrow__tipPath{
    --arrowTipTransform: var(--arrowHoverOffset)
  }
}

.links--string {
    display: flex;
    flex-direction: row;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.links--string li {
    list-style: none;    margin-left: 0 !important;
}
.links--string li:not(:last-child)::after {
    content: "\00a0\00a0\007c\00a0\00a0";
}

.button {
    border: 2px solid var(--neutral-1);
    display: block;
    margin: 2.5rem 0;
    padding: .8rem;
    text-align: center;
    width: 360px;
}

.button, .button:visited, .button:active {
    color: var(--neutral-1);
    font-weight: 400;
}

.button:hover {
    background: var(--neutral-1);
    color: var(--neutral-2);
}

.section .logo {
    height: 4rem;
    margin-left: -5rem;
    margin-top: -4px;
    position: absolute;
    width: 4rem;
}

@media only screen and (max-width: 1440px) {
    :root {
            font-size: 18px;
    }

    main, footer {
        margin-bottom: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .header__actions {
        padding-left: .25rem;
        padding-right: .25rem;
    }

   .section__hero {
        margin: 1rem 0;
    }

    .section__title--first {
        margin: 2rem 0 .25rem 0 !important;
    }

    .section__title {
        margin: 2rem 0 .4rem 0;
    }

    .button {
        margin: 1.25rem auto;
        padding: .8rem;
        width: 100%;
    }

    .section .logo {
        display: none;
    }
}