/* Copyright by Mario Kabey 23.02.2019 */
@import url('https://fonts.googleapis.com/css?family=Inconsolata');
@import url('https://fonts.googleapis.com/css?family=KoHo');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}

h1 {
    font-size: 1.125em;
    line-height: 1.25em;
}

h2 {
    display: block;
    line-height: 1.5em;
}

h5 {
    font-size: 1em;
    line-height: 1.25em;
}

body {
    display: block;
    background-color: whitesmoke;
    font-size: 100%;
}

header {
    background: #fff;;
    width: 100%;
    padding: 5px 0;
    color: #101;
    text-align: left;
}

.topnav {
    overflow: hidden;
    background-color: #ccc;
}
  
.topnav a {
    float: left;
    display: block;
    color: #101;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
  
.topnav .icon {
    display: none;
}
  
.dropdown {
    float: left;
    overflow: hidden;
}
  
.dropdown .dropbtn {
    font-size: 17px;    
    border: none;
    outline: none;
    color: #101;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}
  
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
  
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
  
.topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #555;
    color: white;
}
  
.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}
  
.dropdown:hover .dropdown-content {
    display: block;
}

/* Fügen Sie eine aktive Klasse hinzu, um die aktuelle Seite hervorzuheben */
.active {
    display: inline-block;
    border-bottom: 3px solid #2196F3;
    color: #101;
}

p {
    font-family: 'KoHo', sans-serif;
    font-size: 1em;
    line-height: 1.65em;
}

/* Image Style */
.img-box {
    display: block;
    grid-auto-flow: row;
    margin: 5px;
}

/* PDF Upload style */
.pdf-box {  
    font-family: 'KoHo', sans-serif;
    margin-left: 5px;
}

.pdf-box p {
    display: inline;
    font-family: 'KoHo', sans-serif;
    margin-left: 0px;
}

/* Contentbereich Left column */
.leftcolumn {   
    float: left;
    width: 75%;
}
 
.leftcolumn h2 {
    margin-left: 100px;
    text-decoration: underline;
}

/* Contentbereich Right column */
.rightcolumn {
    font-family: 'KoHo', sans-serif;
    float: left;
    width: 25%;
    padding-left: 4px;
}

blockquote {
    margin-left: 80px; 
    margin-right: 80px; 
    margin-top: 15px;
}

blockquote a {
    color: #0b7dda;
}
  
/* Imagegröße */
img {
    max-width: 100%;
    height: auto;
} 

/* Fügen Sie einen Boxeffekt für Infos hinzu */
.box {
    background-color: white;
    border-radius: 0px;
    border: 1px solid #ccc;
    padding: 20px;
    margin-top: 20px;
    font-size: 1.1em;
    line-height: 1.6em;
    font-family: 'KoHo', sans-serif;
}
.box h2 {
    margin-left: 80px;
}

/* Neue Div Bov */
div#box {
    margin-top: 20px;
    box-shadow: 0px 2px 4px #999;
}
        
div#box .box-top {
    font-size: 1.1em;
    font-family: 'Inconsolata', cursive; /* Fontstyle */
    color: #fff;
    background-color: #0b7dda;
    font-weight: 300;
}
        
div#box .box-panel {
    padding: 10px;
    background-color: #fff;
    text-align: left;
    color: #101;
    font-family: 'KoHo', sans-serif;
    line-height: 1.25em;
}

/* Clear Floats nach den Spalten */
.row:after {
    content: "";
    display: table;
    clear: both;
}
  
/* Scroll button */
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    font-family: 'Inconsolata', monospace; /* Fontstyle */
    background-color: #0b7dda; /* Set a background color */
    color: whitesmoke; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 50%; /* Rounded corners */
    font-size: 16px; /* Increase font size */
    box-shadow: 0px 2px 3px rgb(70, 70, 70);
}
  
#myBtn:hover {
    background-color: #2196F3; /* Add a dark-grey background on hover */
    color: #000; /* Text color */
}

/* Footer */
.footer {
    width: 100%;
    font-size: 18px;
    margin-top: 20px;
    padding: 25px;
    background: #ccc;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    float: left;
}

/* Avatar */
.chip {
    margin-bottom: 60px;
}
.chip img {
    text-align: left;
    float: left;
    margin: 0 15px 0 5px;
    height: 65px;
    width: 65px;
    border-radius: 65%;
}

/* Animierter Text */
#animated-text {
    font-family: Arial, Helvetica, sans-serif;
    background: #333;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: hidden;
    height: 3em;
    word-wrap: break-word;
    white-space: nowrap;
    animation: typing 5s steps(48) forwards;
}
  
@keyframes typing {
    from { 
        width: 0;
    }
  
    to { 
        width: 100ch;
    }
}

/* Resposive Mobile @MediaScreen */
@media only screen and (max-width: 580px) {
    /* For mobile phones: */
    body {
        display: block;
        font-size: 80%;
    }
    p {
        margin-top: 10px;
        
    }
    blockquote {
        margin-left: 10px; 
        margin-right: 10px; 
    }

    .chip {
        margin-bottom: 60px;
    }

    .chip img {
        text-align: left;
        margin: 0 15px 0 5px;
        height: 65px;
        width: 65px;
        border-radius: 65%;
    }
    .footer p {
        float: left;
    }
}
  
/* Responsives Layout - Wenn der Bildschirm weniger als 800 Pixel breit ist, stapeln Sie die beiden Spalten übereinander und nicht nebeneinander. */
@media screen and (max-width: 800px) {
    body {
        font-size: 90%;
    }

    .leftcolumn, .rightcolumn {   
        width: 100%;
        padding: 0;
    }
    blockquote {
        margin-left: 10px; 
        margin-right: 10px; 
        margin-top: 15px;
    }
    .box h2 {
        margin-left: 10px;
    }
}


@media screen and (max-width: 800px) {
    .topnav a:not(:first-child), .dropdown .dropbtn {
      display: none;
    }
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
@media screen and (max-width: 800px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
      display: block;
      width: 100%;
      text-align: left;
    }
}