html, body {
    height: 100%;
    margin: 0;
    font-family: 'Inconsolata', monospace;
    font-size:20px;
}
h2 {
    font-size: 36px;
    margin: 50px 0 20px;
    text-transform: uppercase;
}
a {
    color: #fff;
    text-decoration: none !important;
    font-weight:bold;
}
label {
    display:block;
    margin-bottom:20px;
}
#main_background, #disc_background {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-image: url(/src/image/background_main.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}
#disc_background {
    background-image: url(/src/image/disc_one_cd.jpg);
}
#ddsc_topbar {
    position: fixed;
    background-color:rgba(0,0,0,0.9);
    width: 100%;
    height: 50px;
    padding: 25px 0;
    text-align: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 1s;
    box-shadow: 0 0 20px #000;
}
#ddsc_topbar img {
    height: 100%;
}

#outerblk {
    height: 100%;
    width: 100vh;
    margin: 0 auto;
}
#ddsc {
    text-align: center;
    margin-top: 12%;
    height: 7%;
}
#panel {
    margin-top: -10%;
    text-align: center;
    height: 75%;
    perspective: 1000px;
}
#disc_one {
    text-align: center;
    height: 19.5%;
    margin-top: -26%;
    perspective: 1000px;
}
#ddsc img, #panel img, #disc_one img {
    height:100%;
}
.links {
    overflow:auto;
    background: #030A09;
    color:#fff;
    padding: 0 0 50px;
}
.links .listenon {
    height: 40px;
    margin: 0 20px 20px;
}
.center {
    text-align: center;
}
#contact {
    color:#fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 50px;
    background-image: url(/src/image/background_contact.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}
#contact_form, .links_inner {
    width:50%;
    margin: 0 auto;
}
#contact_form input:not(#submitmail):not([type=checkbox]), #contact_form textarea {
    box-sizing: border-box;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    font-size: 16px;
    border: 1px solid #999;
    border-radius: 5px;
    line-height: 20px;
    padding: 10px 20px;
    margin: 10px 0;
    font-family: 'Inconsolata', monospace;
}
#contact_form input#submitmail {
    font-size: 20px;
    width: 100%;
    background-color:  #030A09;
    color: #FFF;
    border:none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    height:50px;
    line-height:50px;
    transition: background-color 1s;
    font-family: 'Inconsolata', monospace;
}
#contact_form input#submitmail:hover {
    background-color:  #131A19;
}
#footer {
    background-color: #030A09;
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 10px;
}
#footer div {
    margin: 5px 0;
}
#footer #copy {
    font-size: 6px;
}
#footer #socials {
    font-size: 18px;
}
.mail-message {
    position: fixed;
    top: 20%;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    color: #0c0c0c;
    font-size: 26px;
    text-align: center;
    z-index: 9999999;
    padding: 40px 0;
    box-shadow: 0 0 20px #000;
}
.mail-message.success {
    background: #009900;
    color: #fff;
    text-shadow: 1px 1px 0 #000;
}
.g-recaptcha > div {
    margin: 0 auto 20px;
}
.imprint_link {
    font-weight:bold;
    cursor: pointer;
}
#imprint {
    position:fixed;
    z-index: 999999;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.9);
    display:none;
}
#imprint #imprint_inner {
    height: 70%;
    width: 80%;
    background: #fff;
    color: #030A09;
    padding: 5%;
    margin:2% auto;
    overflow-y: scroll;
    position:relative;
}
#imprint #imprint_inner a {
    color:#141920;
}
#imprint #close_imprint {
    font-size: 25px;
    line-height:30px;
    width: 30px;
    height:30px;
    text-align:center;
    border: 2px solid #030A09;
    font-weight:bold;
    position:absolute;
    top: 20px;
    left: 20px;
    color: #030A09;
    cursor: pointer;
}
@media screen and (orientation: portrait) {
    #outerblk {
        position:absolute;
        top: 50%;
        margin-top: -25vh;
        height: 100vw;
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    #contact_form, #links_inner {
        width:80%;
        margin: 0 auto;
    }
}