@import "normalize.css";
@import url("https://use.typekit.net/duo0pky.css");
:root {
    --main-color: #E6E6E6;
    --main-color-hover: #85FFC7;
    --main-background: #39393A;
}

html, body {
    font-family: "harman-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    height: 100%;
    color: var(--main-color);
    background: var(--main-background);
    font-size: 16px;
    height: 100%;
}

a, a:visited, a:active{
    color: var(--main-color);
    font-weight: 600;
    text-decoration: underline;
}
a:hover{
    color: var(--main-color-hover);
    text-decoration: none;
}
main {
    height: 100%;
}

.teaser-background {
    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

.teaser-text {
    /*background-color: rgb(0,0,0); !* Fallback color *!*/
    /*background-color: rgba(0,0,0, 0.4); !* Black w/opacity/see-through *!*/
    color: var(--main-color);
    font-weight: bold;
    /*border: 3px solid var(--main-color);*/
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.5rem;
}

.highlight {
    color: var(--main-color-hover);
}