/* Header */
header {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #333; 
    z-index: 1000; 
	box-shadow: 2px 2px 15px rgb(186, 186, 186); 
}
header a {
    text-decoration: none;         
    color: white;                  
    display: flex;
    align-items: center;           
}
/* Tel */
.phone {
  display: inline-block;  
  margin-right: 5px;
}
/* Email */
.email {
    margin-right: 5px;
}
/* Txt */
.txt{
	font-family: 'Playfair Display', serif;
}
.txt:hover{
	color: #f4f55b;
}
/* Icon */
.icon{
	font-size: 15px;
	color: #FFFFFF;
}
/* screenabhängig */
.small-screen header{
	flex-direction: column; 
	text-align: center; 
}
.small-screen .header-left,
.small-screen .header-right{
	margin-bottom: 10px;
}
