*, *:before, *:after 
{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
}

body 
{
    font-size: 18px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* background-image: linear-gradient(to right,#ffffff, #ffffff); */
    background-color: #474b4f;
    /*background:
    linear-gradient(27deg, #151515 5px, transparent 5px) 0 5px,
    linear-gradient(207deg, #151515 5px, transparent 5px) 10px 0px,
    linear-gradient(27deg, #222 5px, transparent 5px) 0px 10px,
    linear-gradient(207deg, #222 5px, transparent 5px) 10px 5px,
    linear-gradient(90deg, #1b1b1b 10px, transparent 10px),
    linear-gradient(#1d1d1d 25%, #1a1a1a 25%, #1a1a1a 50%, transparent 50%, transparent 75%, #242424 75%, #242424);
    background-color: #131313;
    background-size: 20px 20px;*/
}

#wrapper 
{
    max-width: 1920px;
    margin: 0 auto;
    color: #474b4f;
    min-height: 80vh;
}

main
{
    height: 100%;
}

.backgroundColor
{
    /*background-image: linear-gradient(to right,#ffffff, #ffffff);*/
    background-color: #474b4f;
}

.centered
{
    min-height: 100vh;
    width: 55%;
    padding: 2%;
    /*background-image: linear-gradient(to right,#ffffff, #ffffff);*/
    background-color: #474b4f;
    margin: 0 auto 100vh auto;
    border-radius: 20px;
}

.centeredmax
{
    min-height: 100vh;
    width: 100%;
    padding: 2%;
    /*background-image: linear-gradient(to right,#ffffff, #ffffff);*/
    background-color: #474b4f;
    margin: 0 auto 100vh auto;
}

.backgroundImage
{

}

#homepageVideo
{
    width: 100%;
    height: 100vh;
    overflow: auto;
    object-fit: cover;
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -100;
    margin-top: -10vh
}

h1
{
    text-align: center; 
    color: #b6bcbe;
}
h3
{
    text-align: center; 
    color: #b6bcbe;
}

.container
{
    height: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.slideShow
{
    overflow: scroll;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    text-decoration: none;
}
.slideShowHome
{
    /* background-color: #333; */
    overflow: auto;
    white-space: nowrap;
}
.obj
{
    display: inline-block;
}
.slideShowHome::-webkit-scrollbar
{
    display: none;
}
hr
{
    border: 2px solid #806000;
}
/*** Header-Bereich mit Navigationsleiste ***/
header {
    width: 90%;
    height: 10vh;
    margin: auto;
    /*background-image: linear-gradient(to right,#ffffff, #ffffff);*/
    background-color: #222629;
    position: -webkit-sticky;
    position: sticky;
    z-index: 100;
    top: 0;
    border-radius: 0 0 200px 200px;
}
footer {
    width: 200px;
    height: 10vh;
    /*background-image: linear-gradient(to right,#ffffff, #ffffff);*/
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 100;
}

@media (max-width: 799px)
{
    footer
    {
        position: inherit;
    }
    header
    {
        border-radius: 0 0 70px 70px;
    }
}