@font-face {
    font-family: 'Montserrat-Reg';
    src:    /*url('fonts/Montserrat.ttf') format('truetype'),*/
            url('fonts/montserrat-webfont.woff2') format('woff2'),
            url('fonts/montserrat-webfont.woff') format('woff');
            /* url('fonts/Montserrat.eot') format('embedded-opentype'),
            url('fonts/Montserrat.svg') format('svg'); */
}
@font-face {
    font-family: 'Montserrat-Bold';
    src:    /*url('fonts/Montserrat.ttf') format('truetype'),*/
            url('fonts/montserrat-black-webfont.woff') format('woff'),
            url('fonts/montserrat-black-webfont.woff2') format('woff2');
            /* url('fonts/Montserrat.eot') format('embedded-opentype'),
            url('fonts/Montserrat.svg') format('svg'); */
}

body {
    margin: 0;
    font-family: 'Montserrat-Reg', sans-serif;
}
h1, h2{
    font-size: 8vw;
    color:white;
    text-align: center;
    /* text-shadow: 0 0 200px rgba(0,0,0,0.2); */
    margin: 0;
    padding: 0;
    font-weight: 900;
    font-family: "Montserrat-Bold", sans-serif;
}
h3{
    font-family: "Montserrat-Bold", sans-serif;
}
p {
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: white;
}

.fullscreen-bg__video {
    top: 0px;
    position: fixed;
    z-index: -2;
}

@media (min-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        width: auto;
        height: 100%;
    }
}

/*WEBSITE HEADLINE*/
#websiteHeadline {
    opacity: 1;
    transition: all 2s;
        font-size: 8vw;
    color: white;
    text-align: center;
    margin: 60px 0 0;
    padding: 0;
    font-weight: 900;
}

.colored {
    color: #00bffb;
    text-shadow: none;
    transition: all 1s ease-in-out;
}

#subline {
    color: white;
    font-size: 16px;
    text-shadow: none;
    font-weight: 300;
    margin: 0;
    padding: 0;
    text-align: center;
    margin-top:-1vw;
}

#impressumText h3{
    font-size: 3.25rem;
    line-height: 3.5rem;
    margin-bottom: 15px;
    margin-top: 30px;
    color: yellow;
    text-align: center;
}
#impressumText {
    width: 100%;
    text-align: center;
    position: absolute;
    margin-top: 50px;
}

#impressumTextBackground {
    background-color: black;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.6;
        z-index: -1;
}

.impressumTextText {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    text-align: left;
}

.impressumTextText p {
    color: white;
}
.impressumTextText ul {
        color: white;
}
.impressumTextText h4 {
    color: tomato;
}

/*LEGAL FOOTER*/
#legal{
    opacity: 1;
    text-align: center;
    bottom: 0px;
    width: 100%;
    text-align: center;
    position: absolute;
    display: block;
}
#legal a > span{
    padding: 10px;
    margin: 10px;
    border-radius: 20px;

    color:rgba(255,255,255,0.5);
    font-size: 14px;
    transition: all .3s ease-in-out;
    font-weight: 300;
    display: inline-block;
}
a, a:hover, a:visited {
    text-decoration: none;
    color: inherit;
}
#legal a:hover > span {

    color:rgba(255,255,255,1);
    transition: all .3s ease-in-out;
}
