/* schriftarten*/

@font-face {
    font-family: PalanquinSemiBold;
    src: url(../fonts/Palanquin-SemiBold.ttf);
}

@font-face {
    font-family: PalanquinMedium;
    src: url(../fonts/Palanquin-Medium.ttf);
}

body {
    height: 100%;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    font-family: PalanquinMedium;
}

a {
    text-decoration: none;
    color: inherit;
}

#main {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#footer {
    font-size: 15px;
    text-align: center;
    width: 100%;
    margin-top: 50px;
    color: rgb(0,0,0,0.5);
}

#astavo-logo {
    display: block;
    width: 50%;
    margin: 0 auto;
}

#astavo-logo-wrapper {
   width: 100%;
}

#wrapper-imprint-text {
    position: fixed;
    width: 100%;
    height: 100%;
}

#imprint-wrapper {
    display: none;
    background-color: rgb(0,0,0,0.4);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 300;
}

#show-imprint {
    cursor: pointer;
}

#imprint {
    background-color: #fefefe;
    margin: 0 auto;
    margin-top: calc(80px + 5%);
    font-size: 20px;
    border-radius: 20px;
    text-align: center;
    font-family: PalanquinSemiBold;
    overflow: hidden;
    color: rgba(0,0,0,0.5);
    z-index: -1;
}


@media (max-width: 1200px) {
    #imprint {
        width: 30%;
        padding: 20px;
    }
}

@media (max-width: 800px) {
    #imprint {
        width: 70%;
        padding: 10px;
    }
}

@media (min-width: 1200px) {
    #imprint {
        width: 20%;
        padding: 20px;
    }
}