/*
Notizen:
h1 Seitentitel im Titel Block
h3 Untertitel in Blöcken
h5 Navbar
 */

html {
    scroll-behavior: smooth;
}

:root {
    --blue-color: #0764A1;
    --beige-color: #FCF8F3;
}

body {
    background-color: var(--beige-color);
    color: var(--blue-color);
}

.navigation {
    font-size: 24px;
}

.logo-header {
    width: 100%;
}

.logo-img {
    width: 550px;
}

.titel-img {
    max-width: 100%;
}

a:link, a:visited, a:active {
    text-decoration: none;
    color: var(--blue-color);
}

a:hover {
    text-decoration: none;
    color: #969696;
}

.reverse-link:link, .reverse-link:visited, .reverse-link:active {
    text-decoration: none;
    color: #969696;
}

.reverse-link:hover {
    text-decoration: none;
    color: var(--blue-color);
}

.content-div {
    margin-top: 20px;
    color: var(--blue-color);
}

#home .content-div img, #dienstleistungen .content-div img {
    height: 80px;
    width: 80px;
}

.content-div li {
    list-style-type: square;
}

#team .content-div img {
    width: 360px;
}

#iris-lesmann{
    text-align: right;
}

#download .content-div img {
    width: 150px;
}

table {
    margin-bottom: 20px;
}

td {
    padding-right: 20px;
}

button {
    margin-top: 10px;
    background-color: var(--blue-color) !important;
}

footer {
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;
}

/* from https://www.w3schools.com/howto/howto_js_mobile_navbar.asp */
.top-nav {
    overflow: hidden;
}

.top-nav #nav-items {
    display: none;
}

.top-nav a:hover {
    color: #969696;
}


.top-nav img {
    width: 300px;
}

.top-nav .navigation {
    font-size: 16px;
}

/* iPad grösse */
@media screen and (min-width: 990px) {
    @media screen and (max-width: 1200px) {
        .navigation {
            font-size: 18px;
        }

        .logo-img {
            width: 400px;
        }
    }
}

/* Mobile */
@media screen and (max-width: 990px) {
    #team .content-div img {
        width: 300px;
    }

    #iris-lesmann{
        text-align: left;
    }
}

.disabled{
    pointer-events:none
}

.hidden{
display: none;
}