* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 5;
    font-family: Tahoma, Arial, sans-serif;
    color: #000000;
    background-color: #ffffff;
    /*#d7d7d7; hellgrau*/
    width: 100vw;
}

h1 {
    font-family: Geneva, Verdana, sans-serif;
    font-size: 30px;
}

footer {
    background-color: #555555;
    margin: 0;
    font-family: Arials, sans-serif;
    color: #d4d4d4;
    font-size: 1em;
}

a {
    text-decoration: none;
    font-family: Tahoma, Arial, sans-serif;
    color: #8bc34a;
}

a:hover {
    background-color: #C71585;
}

.image-logo {
    height: 30em;
    width: 30em;
}

.navbar {
    flex-direction: column;
    align-items: flex-start;
    display: columns;
    justify-content: center;
    align-items: center;
    background-color: #C71585;
    /*#da779a;*/
    /*hellrosa*/
    /*#e398b2; rosa aus Logo*/
    /*#8bc34a; Lindgr�n*/
    color: #ffffff;
}

.brand-title {
    font-size: 1.5em;
    margin: 1em;
}

.navbar-links {
    display: none;
    font-size: 3em;
    flex-direction: column;
}

.navbar-links ul {
    margin: 0;
    padding: 0;
    width: 100%;
    flex-direction: column;
}

.navbar-links li {
    list-style: none;
    text-align: center;
}

.navbar-links li a {
    text-decoration: none;
    color: #ffffff;
    padding: 1rem;
    display: block;
}

.navbar-links li a:hover {
    background-color: #333333;
}

.navbar-links.active {
    display: flex;
}

.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 111px;
    height: 75px;
}

.toggle-button .bar {
    height: 5px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
}

.galeria-links {
    font-family: Tahoma, Arial, sans-serif;
    color: #8bc34a;
    font-size: 3em;
}

.galeria-links a {
    color: #8bc34a;
    text-decoration: none;
    display: block;
    padding: .2rem;
}

.galeria-links a:hover {
    background-color: #555555;
}

.linkcontainer {
    display: block;
    border-radius: 20px;
    position: absolute;
    top: 2vh;
    left: 5vw;
    width: auto;
    min-height: 40vh;
    max-height: 90vh;
    background-color: #555555;
    border: 8px solid #333333;
    visibility: hidden;
    overflow: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.linkcontainerContentPicture {
    /*display: inline;*/
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100rem;
    height: 100rem;
}

.startseiteText {
    /*display: flex;
    flex-direction: flex-start;
    text-decoration-style: double;
    justify-content: space-around center;*/
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 24pt;
    color: #C71585;
}

.startseiteText span {
    padding: 5px;
}

.imgBordered {
    max-height: 150px;
    max-width: auto;
    padding: 5px;
    background-color: #ffffff;
    border: 8px solid #333333;
    border-radius: 10px;
    margin-right: 15px;
}

.startseiteText img {
    opacity: 0.5;
    object-fit: cover;
    transition: .2s linear;
}

.startseiteText img:hover {
    opacity: 1.0;
    scale: 2.1;
    object-fit: cover;
    transition: .2s linear;
}


/* Formatierung f�r Desktops*/


/*--------------------------*/


/*##########################*/


/*
@media (min-width: 64.06em) {
    
    .image-logo {
     
        max-width: 100%;
        display: block;
     
        width: 400px;
        height: 400px;
    }
    body {
        font-size: 50;
    }
    a {
        font-size: 50;
    }
    .toggle-button {
        display: none;
        width: 3px;
        height: 21px;
    }
    .navbar-links {
        display: none;
        font-size: 3em;
    }
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }
    .navbar-links li {
        text-align: center;
    }
    .navbar-links li a {
        padding: .5rem 1rem;
    }
    .navbar-links.active {
        display: flex;
    }
}
*/