body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}


header {
	background: #000000;
    color: white;
    padding: 15px;
    text-align: center;
}

.logo {
	display: flex;
	margin: auto;
    justify-content: center; /* Horizontale Zentrierung */
    background-size: cover; /* optional, um das Bild anzupassen */
}


nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: #888888;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #f39c12;
}

section {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.product {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    text-align: center;
}

button {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

button:hover {
    background: #2ecc71;
}

footer {
    background: #2c2c2c;
    color: #888888;
    text-align: center;
    padding: 10px 0;
    position: relative;
    width: 100%;
}

h4 {
  font-size: 10px;
}

