/* Styling */
* {
    font-family: 'nexa_lightregular';
    color: #ffffff;
}
body {
    position: relative;
    background-image:
        linear-gradient(rgba(68, 69, 81, 0.9), rgba(68, 69, 81, 0.9)), 
        url('../img/lucan_bg.png');
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
    margin: 0;
}
.LPLogo {
    width: 170px;
}
.content {
    width: 900px;
    padding: 50px 90px;
    box-sizing: border-box;
    border: 1px solid #ffffff;
    border-top: none;
    position: relative;
    margin: 150px 0 100px 0;
}
.content.impressum {
    margin: 100px 0;
}

.content::before, .content::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10%;
    height: 1px;
    background: #ffffff;
}
    .content::before {
    left: 0;
}
    .content::after {
    right: 0;
}
.content.impressum::before, .content.impressum::after {
    width: 30%;
}
h1 {
    font-family: 'nexa_boldregular';
    text-transform: uppercase;
    text-align: center;
    margin-top: -100px;
    margin-bottom: 40px;
    font-size: 40px;
}
.content.impressum h1 {
    margin-top: -74px;
}

p {
    text-align: center;
    line-height: 1.5;
    margin-bottom: 0;
}
.namespan {
    text-transform: uppercase;
}
.inceptionspan {
    font-family: 'nexa_boldregular';
}
.botlinks {
    display: flex;
}
.botlinks a {
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
}
.botlinks a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
}
.botlinks a:hover::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}
.contactbutton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffffffe6;
    border-radius: 0;
    padding: 10px 20px;
    padding-bottom: 7px;
    text-transform: uppercase;
    font-family: 'nexa_lightregular';
    border: none;
    font-size: 18px;
    transition: all 0.3ms;
    cursor: pointer;
}
.contactbutton:hover {
    background: #ffffff;
    transition: all 0.3ms;
}
.contactbutton p {
    color: #444551;
    margin-top: 0;
}
.contactbutton .mobileicon {
    display: none;
}
/* Responsive */

@media screen and (max-width:1190px) {
    body {
        background-size: auto;
    }
    .content {
        width: auto;
    }
    .content.impressum::before, .content.impressum::after {
        width: 33%;
    }
}

@media screen and (max-width:870px) {
    h1 {
        font-size: 35px;
    }
    .content::before, .content::after {
        width: 8%;
    }

    .content.impressum h1 {
        margin-top: -68px;
    }
}

@media screen and (max-width:790px) {
    h1 {
        font-size: 32px;
        margin-top: -90px;
    }
    .content {
        margin: 100px 0 100px 0;
    }
}

@media screen and (max-width:700px) {
    h1 {
        font-size: 29px;
    }
    .content {
        margin: 100px 0 70px 0;
    }
    .content::before, .content::after {
        width: 6%;
    }
}
@media screen and (max-width:600px) {
    .content {
        padding: 50px 30px;
    }
    .content.impressum::before, .content.impressum::after {
        width: 20%;
    }
    .contactbutton {
        padding: 10px;
        bottom: 10px;
        right: 10px;
    }
    .contactbutton p {
        display: none;
    }
    .contactbutton .mobileicon {
        display: block;
        width: 30px;
    }
}
@media screen and (max-width:500px) {
    body {
        padding: 20px;
    }
    .content {
        padding: 50px 20px;
    }
    .content::before, .content::after {
        width: 5%;
    }
}
@media screen and (max-width:450px) {
    body {
        padding: 10px;
    }
    .LPLogo {
        width: 140px;
    }
    .content.impressum::before, 
    .content.impressum::after {
        width: 15%;
    }
    .content.impressum h1 {
        margin-top: -66px;
    }
}
@media screen and (max-width:340px) {
    h1 {
        font-size: 25px;
    }
}

@media screen and (max-width: 740px) and (orientation: landscape) {
    .contactbutton {
        padding: 10px;
    }
    .contactbutton p {
        display: none;
    }
    .contactbutton .mobileicon {
        display: block;
        width: 30px;
    }
}
/* FONTS */
@font-face {
    font-family: 'nexa_boldregular';
    src: url('../fonts/nexa_bold-webfont.woff2') format('woff2'),
         url('../fonts/nexa_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'nexa_lightregular';
    src: url('../fonts/nexa_light-webfont.woff2') format('woff2'),
         url('../fonts/nexa_light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}