body {
    margin: 0;
    background-color: #202020;
}
canvas {
    width: 100%;
    height: 100%;
}
.contact-form-container {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 20vh;
    justify-content: center;
    align-items: center;
}

.sent-container {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 35vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    font-size: 2em;
}

.sent-container img {
    width: 140px;
}
.contact-form {
    z-index: 10;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;

}
.contact-form a {
    text-decoration: none;
    color: orange;
}
.input-field {
    font-weight: bold;
    width: 300px;
    margin: 0 35px 20px ;
    height: 35px;
    padding: 6px 15px;

    outline: none;
    border: none;
    background: #fff;
    color: #748194;
    font-size: 14px;
}
.submitBtn {
    background-color: #fff;
    border: none;
    color: #000;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}
@media all and (orientation:portrait) {
    .orientation-wrapper {
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #202020;
        padding-top: 30vh;
        justify-content: center;
        align-items: center;

    }
    .img-container {
        width: 100vw;
    }
    .img-container::after {
        content: '';
        width: 100vw;
      }
    .orientation-wrapper img {
        max-width: 35vw;
        clear: both;
        margin-left: auto;
        margin-right: auto;
        display: block;

    }
    .orientation-text {
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1.2em;
        color: #fff;
        clear: both;
        padding: 0px 20px 0px 20px;

    }
}
    
@media all and (orientation:landscape) {
    .orientation-wrapper {
        display: none;
    }
}

.loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #202020;
    display:flex;
    justify-content: center;
    align-items: center;
}
.loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #Fff;
    animation: loader 2s infinite ease;
}
.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 2s infinite ease-in;
}

.social-container {
    position: absolute;
    top: 0 !important;
    right: 0;
    z-index: 20;
}

.checkbox-container {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}


.social-container img {
    max-width: 25px;
    padding: 20px 20px 0px 0px;
    transition: all .2s ease-in-out;
}

.fb-icon {
    padding: 20px 10px 0px 0px !important;
}

.social-container img:hover {
    transform: scale(1.3);
}

.impressum-container {
    position: absolute;
    bottom: 0 !important;
    right: 0;
    padding: 0px 5px 5px 5px;
    background-color: #202020;
    z-index: 20;
}

.impressum-container a {
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.6em;
    color: #fff;
}


.impressum {
    padding: 100px 20px 20px 0px;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}
@keyframes loader {
    0% { transform: rotate(0deg);}
    25% { transform: rotate(180deg);}
    50% { transform: rotate(180deg);}
    75% { transform: rotate(360deg);}
    100% { transform: rotate(360deg);}
}
@keyframes loader-inner {
    0% { height: 0%;}
    25% { height: 0%;}
    50% { height: 100%;}
    75% { height: 100%;}
    100% { height: 0%;}
}









