html{
	box-sizing: border-box;
    min-height: 100%;
    overflow-x: scroll;
    overflow-y: scroll; /*  Scrollbalken x und y erzwingen, damit Layout immer gleich dargestellt wird und nicht springt */
}
*{
	margin: 0;
	padding: 0;
	outline: 0;
	box-sizing: inherit;
}
body{
    font-family: 'Segoe UI', Segoe, Frutiger,'Frutiger Linotype','Dejavu Sans','Helvetica Neue',Arial,sans-serif;
    font-size: 1.0625rem;
    background: linear-gradient(to bottom, rgba(208,217,221,1) 0%,rgba(197,213,221,1) 44%,rgba(130,190,221,1) 82%,rgba(84,174,224,1) 100%);
}
.logo{
    max-width: 16rem;
    height: auto;
    float: left;
    border: 0;
    display: inline-flex;
}
header{
	text-align: right;
}
nav{
	/* background:rgba(0,255,0,0.75); */
     overflow: hidden; /*Damit nav nur so groß ist wie benötigt und der Hintergrund vom Header neben dem Nav zu sehen ist */
}
nav ul{
	list-style: none;
    background: #585b6a;
    display: inline-block;
    font-size: 0; /* Damit Abstände zwischen den Links nicht mehr vorhanden sind */
    float: right;  /* Damit bei Smarphones die Navi-Leiste rechts zentriert ist */
}
nav li{
    /* background: orange; */
    display: inline-block;
    font-size: 0;  Damit Abstände zwischen den Links nicht mehr vorhanden sind */
    float: left;
}
nav a, nav strong{
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    font-size: 1.0625rem; /* Da die Abstände bei nav li und nav ul 0 sein sollen, muß hier die Schriftgröße wieder auf 17px gesetzt werden */
    
}
nav a:link, nav a:visited{
    color: #ddd7c1;
    background: #585b6a;
}
nav a:focus, nav a:hover, nav a:active, nav strong{
    color: #32364a;
    background: #F48E2A;
}
main{
	background:#fff;
	display: block;
	min-height: 31.25rem;
	/* border: 5px solid red; */
	padding: 2.5rem 1.875rem;
    max-width: 60rem;
    margin: 1.875rem auto;
}
h1{
    margin-bottom: 1rem;
    color: #32364a;
    font-size: 2.225rem;
}
h2, h3, p{
    margin-bottom: 1rem;
    padding-top: 1rem;;
}
h2{
    font-size: 2rem;
    color: black;
    clear: both;
}
h3{
    font-size: 1.6rem;
    color: rgb(114, 46, 104);
    clear: both;
}
img{
    max-width: 10rem;
    height: auto;
    margin: 0rem 1rem 1.5625rem 0rem
}
figure{
    float: left;
    padding: 1rem 1rem 0 0;
}
figcaption{
    font-size: 1.1rem;
    color: black;
    text-align: center;
    padding: 0rem 1rem 1rem 0;
    font-weight: 700;
}
a:link{
    color: black;
}
a:visited{
    color: #666;
}
a:focus, a:hover, a:active{
    color: #F48E2A;
    background: white;
    text-decoration: none;
    /* outline = automatische Linie beim Tab abschalen */
    outline: none;
    
}
table, th, td{
    border:0.13rem solid white;
    text-align: center;
    vertical-align: top;
  }
table{
    max-width: 100%;
}
th{
    font-size: 1.5rem;
 }
footer{
    max-width: 100%;
    background: #585b6a;
    text-align: center;
}
footer table, footer td{
    border:0.13rem solid #585b6a;
    text-align: center;
    vertical-align: middle;
    font-size: 1.5rem;
}
footer table{
width: 70%;
margin-left: 15%;
margin-right: 15%;

}
footer li{
    /* background: orange; */
    display: inline-block;
    font-size: 0;  Damit Abstände zwischen den Links nicht mehr vorhanden sind */
}
footer a, footer strong{
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    font-size: 1.0625rem; /* Da die Abstände bei nav li und nav ul 0 sein sollen, muß hier die Schriftgröße wieder auf 17px gesetzt werden */
    
}
footer a:link, footer a:visited{
    color: #ddd7c1;
    background: #585b6a;
}
footer a:focus, footer a:hover, footer a:active, footer strong{
    color: #32364a;
    background: #F48E2A;
}
footer p{
    color: #ddd7c1;
    font-size: 1rem;
}
.rund{
    border-radius: 50%;
    /* max-width: 8rem; mit Eberatung */ 
    max-width: 10rem; /* ohne Eberatung */
    height: auto;
}
.ich{
    float: left;
    max-width: 20rem;
}
.preise{
    border:0.13rem solid black;
    text-align: left;
    max-width: 100%;
    font-size: 1.5rem;
    padding: 0.2rem 1rem;
}
.stop{
    clear: both;
    margin-top: 1rem;
}
.social{
    max-width: 5rem;
}
.fuss{
    float: none;
}
.links{
    float: left;
  }
.Termin{
    font-size: 1.25rem;
    font-weight: 700; 
}
a.telefon:link{
    color: black;
    text-decoration: none;
}
a.telefon:visited{
    color: black;
    text-decoration: none;
}
a.telefon:focus, a.telefon:active, a.telefon:hover{
    color: black;
    font-size: larger;
    text-decoration: none;
    /* outline = automatische Linie beim Tab abschalen */
    outline: none;
}
a.freepik:focus, a.freepik:active, a.freepik:hover{
    color: white;
    background: #585b6a;
    /* outline = automatische Linie beim Tab abschalen */
    outline: none;}
    a.button:link{
        color: black;
        font-size: 1rem;
        font-weight: 700;
        background: #F48E2A;
        text-decoration: none;
        text-align: center;
        padding: 0.5rem 1rem;
        cursor: pointer;
        border-radius: 0.5rem;
        float: right;
      }
      a.button:visited{
        color: black;
        font-size: 1rem;
        font-weight: 700;
        background: #F48E2A;
        text-decoration: none;
        text-align: center;
        padding: 0.5rem 1rem;
        cursor: pointer;
        border-radius: 0.5rem;
        float: right;
      }
      