#background{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    background-color: #101010;
    overflow: hidden;
}
.text{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: normal;
    line-height: 150%;
    text-transform: none;
    text-decoration: none;
}
.text a{
    color: #ffffff;
    text-decoration: underline;
}
.text a:hover{
    color: #ababab;
    text-decoration: underline;
}
.text_footer{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: normal;
    line-height: 150%;
    text-transform: none;
    text-decoration: none;
}
.text_footer a{
    color: #ffffff;
    text-decoration: none;
}
.text_footer a:hover{
    color: #ababab;
    text-decoration: none;
}
.text_white{
    color: #ffffff;
}
.text_black{
    color: #101010;
}
.text_centered{
    text-align: center;
}
.text_smaller{
    font-size: 13px;
}
.text_bigger{
    font-size: 20px;
}
h2{
    line-height: 150%;
}


@media screen and (max-width: 799px)
{
    #intro_left{
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 50%;
        margin: 0px;
        padding: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        background-color: #101010;
        opacity: 0;
        transition: transform 0.5s;
        transform: scale(1);
        cursor: pointer;
    }
    #intro_right{
        position: absolute;
        top: 50%;
        left: 0%;
        width: 100%;
        height: 50%;
        margin: 0px;
        padding: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        background-color: #e6e5a3;
        opacity: 0;
        transition: transform 0.5s;
        transform: scale(1);
        cursor: pointer;
    }
    #nachruf{
        position: absolute;
        top: 0px;
        left: 0%;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        gap: 20px;
        width: 100%;
        height: 100%;
        padding: 0px;
        margin: 0px;
    }
    #impressum{
        position: absolute;
        top: 0px;
        left: 0%;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        gap: 20px;
        width: 100%;
        height: 100%;
        padding: 0px;
        margin: 0px;
    }
    .box{
        position: relative;
        width: 70%;
        max-width: 250px;
        height: auto;
    }
    .image{
        position: relative;
        top: 0px;
        left: 0px;
        width: 300px;
        height: auto;
        margin: 0px;
    }
    .content{
        position: relative;
        top: 0px;
        left: 0px;
        width: auto;
        height: 100%;
        margin: 0px;
        padding: 20px;
        overflow: auto;
        scrollbar-color: #606060 #202020;
    }
    .text_intro{
        font-size: 13px;
    }
}
@media screen and (min-width: 800px){

    #intro_left{
        position: absolute;
        top: 0px;
        left: 0px;
        width: 50%;
        height: 100%;
        margin: 0px;
        padding: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        background-color: #101010;
        opacity: 0;
        transition: transform 0.5s;
        transform: scale(1);
        cursor: pointer;
    }
    #intro_right{
        position: absolute;
        top: 0px;
        left: 50%;
        width: 50%;
        height: 100%;
        margin: 0px;
        padding: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        background-color: #e6e5a3;
        opacity: 0;
        transition: transform 0.5s;
        transform: scale(1);
        cursor: pointer;
    }
    #nachruf{
        position: absolute;
        top: 0px;
        left: 50%;
        width: 100%;
        height: 100%;
        max-width: 1000px;
        transform: translate(-50%,0%);
        padding: 0px;
        margin: 0px;
    }
    #impressum{
        position: absolute;
        top: 0px;
        left: 50%;
        width: 100%;
        height: 100%;
        max-width: 1000px;
        transform: translate(-50%,0%);
        padding: 0px;
        margin: 0px;
    }
    .box{
        position: relative;
        width: 60%;
        height: auto;
    }
    .image{
        position: absolute;
        top: 0px;
        left: 0px;
        width: 350px;
        height: auto;
        margin: 0px;
    }
    .content{
        position: absolute;
        top: 0px;
        left: 380px;
        width: auto;
        height: 100%;
        margin: 0px;
        padding-right: 20px;
        overflow: auto;
        scrollbar-color: #606060 #202020;
    }
    .text_intro{
        font-size: 15px;
    }

}

#intro_left:hover{
    transform: scale(1.1);
}
#intro_right:hover{
    transform: scale(1.1);
}

#footer{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    padding: 10px;
    margin: 0px;
    background-color: #202020;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.5);
}