* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    line-height: 1.3;
    min-height: 100vh;
  }

html {
    scroll-padding-top: 56px; /* height of sticky header */
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    scroll-behavior: smooth;
 }


body {
    font-size: 16px;
    /*background: #fff;
    background: linear-gradient(45deg, rgba(228,230,195,1) 0%, rgba(119,177,67,1) 50%, rgba(228,230,195,1) 100%);*/
}

h1 {
    font-size: 2em;
    font-weight: bold;
}

h1 a {
    text-decoration: none;
}

h1 span {
    display: block;
    padding-bottom: 0.5rem;
}

h1 span:last-child {
    padding-bottom: 0;
}

h2 {
    font-size: 1.5em;
    font-weight: bold;
    padding-bottom: 1em;
}

h3 {
    font-size: 1.25em;
    font-weight: bold;
    padding-bottom: 1em;
}

p {
    padding-bottom: 1em;
}

p:last-child {
    padding-bottom: 0;
}

strong, b {
    font-weight: 600;
}

em, i {
    font-style: italic; 
}

address {
    padding-bottom: 1em;
}

a {
    color: #222725;
}

a:hover {
    color: #121113;
}

header {
    margin: 0 auto;
    padding: 1em 1em 2em;
    text-align: center;
    border-bottom: 4px solid #C8DDC4;
    background-color: #619087;
}

.header-praxis {
    color: #222725;
}

.header-name {
    color: #FFFEF8;
    text-shadow: 1px 1px 0px #121113;
}

.header-title {
    font-size: 1rem;
    font-weight: normal;
    color: #C8DDC4;
}

nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 42;
    background-color: #FFFEF8;
    padding: 1em 0;
    border-bottom: 4px solid #C8DDC4;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

section {
    border-bottom: 4px solid #C8DDC4;
    padding: 1em;
}


ul.list-bullet {
    list-style: disc outside;
    margin: 0 0 1em 2em
}

ul.list-bullet li {
    padding: 0 0 0.25rem 0;
}

ul.list-bullet li:last-child {
    padding-bottom: 0;
}

footer {
    background-color: #FFFEF8;
    text-align: center;
    padding: 1em 0;
}

#uebermich img {
    max-width: 100%;
    height: auto;
    border-radius: 10%;
    padding: 4px;
    border: 4px solid #c8ddc4;
    margin: 0 auto 1.5rem auto;
    display: block;
}

table {
    border-collapse: collapse;
    margin-bottom: 10px;
    width: 100%;
    table-layout: fixed;
}
  
td,
th {
    padding: 6px;
    text-align: left;
    vertical-align: top;
    word-wrap: break-word;
}

thead {
    border-bottom: 1px solid #dbdbdb;
}

tfoot {
    border-top: 1px solid #dbdbdb;
}

tbody tr:nth-child(even) {
    background-color: #efefef;
}

tbody tr td:first-child {
    width: 20%;
}


@media only screen and (min-width: 768px) {
    body {
    background: #fff;    
    }

    main section, footer div, nav ul {
        max-width: 750px;
        margin: auto;
    }

    main {
        background-color: #FFF;
        background: linear-gradient(45deg, rgba(228,230,195,1) 0%, rgba(119,177,67,1) 50%, rgba(228,230,195,1) 100%);
        background: radial-gradient(circle, rgba(119,177,67,0.3253676470588235) 0%, rgba(228,230,195,0.3309698879551821) 100%);
        background: radial-gradient(circle, rgba(255,254,248,1) 0%, rgba(97,144,135,1) 100%);
    }

    section {
        background-color: #FFF;
        padding: 3em;
    }
    section:last-child {
        border-bottom: none;
    }

    footer {
        border-top: 4px solid #C8DDC4;
    }
}