body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: url('assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
}

header {
    text-align: left;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* leichter Hintergrund für bessere Lesbarkeit */
    display: flex; /* Flexbox für Layout */
    align-items: center; /* Zentriert Elemente vertikal */
    justify-content: center; /* Zentriert Elemente horizontal */
}

header .logo {
    width: 150px; /* Größe des Logos */
    margin-right: 20px; /* Abstand zwischen Logo und Text */
}

header div {
    text-align: left; /* Ausrichtung des Texts links */
}

header h1 {
    font-size: 2.5em; /* Größere Schrift für den Titel */
    font-family: 'Pacifico', cursive; /* Anpassung der Schriftart */
    font-weight: 700;
    margin: 0; /* Entfernt Margin */
}

header p {
    font-size: 1.5em;
    font-weight: 300;
    margin: 0; /* Entfernt Margin */
}

.category-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.category-link {
    margin: 0 20px;
    text-align: center;
    color: white;
    text-decoration: none;
}

.category-link img {
    width: 100%; /* Anpassung für bessere Skalierung */
    max-width: 200px; /* Maximale Breite der Bilder */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    transition: transform .2s; /* Animation für Hover-Effekt */
}

.category-link img:hover {
    transform: scale(1.05); /* Vergrößert das Bild beim Hover */
}

.category-link span {
    display: block;
    margin-top: 10px;
    font-size: 2em;
}
