@charset "utf-8";
/* ---------------------------------------------------------------
   	Stylesheet simonsfigaro.ch
   	Datei: style.css
	Datum: 7. Januar 2018
	Autor: Copyright Claudia Bärtsch 2018
-----------------------------------------------------------------*/
html {
    font-family: 'Cormorant Garamond', serif;
	font-size: 120%;
	letter-spacing: 0.05em;
	line-height: 1.5;
	overflow-y: scroll;
}

body {
    display:-webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    max-width: 60em;
    margin: 0 auto;
    background-color: #ffffff;
}
header {
    background-color: #ffffff;
}

h1 .logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}
article {
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding-left: 0px;
    
}
    article li {
        font-size: 1em;
    }
    address {
        font-size: 1.4em;
    }
    .oeffnungszeiten li {
        list-style-type: none;
        font-size: 1.15em;
        text-align: center;
    }
ul .oeffnungszeiten {
    font-size: 1em;
    text-align: center;
    padding-left: 0px;
}
footer {
    font-size: 0.7em;
    text-align: center;
}
    .adresse {
        font-style: normal;
    }
    
a {
	text-decoration: none;
}
	a:link {
		color: #000000;
	}
	a:visited {
		color: #000000;
	} 
	
	a:hover,
	a:focus {
		border-bottom: 1px solid #000000;
		color: #000000;
	}
	
	a:active {
		color: #000000;
	}

 
/* Mobile first - alle Dokument-Blöcke bekommen 100% Breite */
header, article, footer {
    padding: 10px 10px 10px 0px;
    margin: 10px;
    -webkit-flex: 1 100%;
    flex: 1 100%;
}
header {
    display:-webkit-flex;
    -webkit-flex-flow: row wrap;
    display: flex;
    flex-flow: row wrap;
}
    header * {
         -webkit-flex: 1 1 0%;
         flex: 1 1 0%;
}
    header img {
        -webkit-flex: 0 0 150px;
        flex: 0 0 150px;
        margin-right: 20px;
      }
      
footer {
    display:-webkit-flex;
    -webkit-flex-flow: row wrap;
    display: flex;
    flex-flow: row wrap;
}
    footer * {
        -webkit-flex: 1 1 0%;
        -webkit-justify-content: space-between;
        flex: 1 1 0%;
        justify-content: space-between;
    }
      footer p {
          text-align: center;
      }

/* Smart Phones und Tablets mit mittlerer AuflÃ¶sung */
@media all and (min-width: 35em) {
    
    
    article {
        webkit-order: 2;
        order: 2;
    }
    footer {
        webkit-order: 5;
        order: 5;
    }
}


/* Large screens */
@media all and (min-width: 50em) {
    article {
        -webkit-flex: 5 1 0%;
        -webkit-order: 3;
        order: 3;
        flex: 5 1 0%;
    }
}