/**
* Allgemeine Style-Einstellungen
*
* @site     evakolb.de
* @author   Klaus Trapp
* @version  dec'20
*/
html {
   font-size: 100%;
}
body {
   font-family: 'Comic Sans MS', 'Trebuchet MS', Verdana, Arial, sans-serif;
   text-align: center;
}
h1 {
   margin: 2.5em 0 0 0;
   font-size:   1.2em;
   font-weight: bold;
   line-height: 1.4em;
}
div.image {
   position: absolute;
   width: 20%;
   left:  40%;
   right: 40%;
}
div.image img {
   width: 100%;
   margin-top: 0;
   border: .4em solid white;
   z-index: 0;
}
div.mail {
   padding: .8em 0;
}
/* = 9, wenn Schneflocken über dem Foto sichtbar sein sollen, sonst = 0 */
span.snow {
   z-index: 9;
}
/**
* @section  Button gototop (id)
**/
#gototop {
   position: fixed;
   display: block;
   bottom:  3%;
   right:   8%;
   padding: .1em .4em 0 .4em;
   font-size: 1.5em;
   color: darkred;
   box-sizing: border-box;
   border: none;
   border-radius: 1em;
   outline: none;
   z-index: 99;
   cursor: pointer;
   transition-duration: 0.4s;
   visibility: hidden
}
#gototop:hover {
   color: darkgreen;
}
#gototop.visible {
   visibility: visible;
   opacity: .5;
}
@media print {
   nav, footer, .snow {
      display: none;
   }
}