/* Allgemeine Stile */
* {
    margin: 0;
    padding: 0;
   
}

body {
    font-family: 'Italiana';
  font-weight: lighter;
  font-style: normal;
    background-color: #f5f2ec;
}



/* Hero Text mittig auf der Slideshow */
.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #4e4034;
    z-index: 5;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}


.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 200px;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

header {
    position: absolute;        /* statt relative → über Slideshow */
    top: 130px;
    left: 42%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f2ec;   /* durchsichtig */
    color: #ffffff;            /* weiße Schrift */
    padding: 3px;
    z-index: 10;
}

@media (max-width: 600px) {
    .logo-container {
       display: flex;
    }
    .logo {
    width: 100px;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}
header {
    position: absolute;        /* statt relative → über Slideshow */
    width: 10%;
    top: 60px;
    left: 42%;
    display: flex;
    align-items: center;
    background-color: #f5f2ec;   /* durchsichtig */
    color: #ffffff;            /* weiße Schrift */
    padding: 3px;
    z-index: 10;
}
}