body {
	padding: 0;
	margin: 0;
	font-family: verdana;
	background-image: url(img/kraftwerk.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}

#container {
	display: block;
	margin-left: auto;
	margin-right: auto;
	background-color: white;
	width: 968px;
	border: 3px solid orange;
	padding: 10px 10px 10px 10px
}

p {
	text-align: justify;
}

a {
	text-decoration: none;
}

.logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Produktkarte */

.product-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.product-container a {
	text-decoration: none;
	color: black;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 20px;
    width: 300px;
    text-align: justify;
}

product-card a {
	border: 1 px solid orange;
}

.product-card img {
    width: 100%;
    height: auto;
}

.product-card h4 {
    margin-top: 10px;
	text-align: center;
}

.product-card p {
    margin-top: 10px;
}

footer p {
	text-align: center;
	width: 968px;
	font-size: 10px;
}

/* Tabelle */

table {
    width: 100%;
    border-collapse: collapse;
	table-layout: fixed;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: orange;
    color: white;
}

td:first-child img {
    max-width: 100%; /* Stellt sicher, dass das Bild nicht über seine Zelle hinausgeht */
    height: auto; /* Behält das Seitenverhältnis des Bildes bei */
}

@media (max-width: 768px) {
	
	#container {
		width: 95%;
	}
	
    product-container {
        width: 100%;
    }

    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        margin-bottom: 10px;
    }

    td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

    td:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }

    td:nth-of-type(1):before { content: "Bild"; }
    td:nth-of-type(2):before { content: "Beschreibung"; }
    td:nth-of-type(3):before { content: "Kategorie"; }
	
footer p {
	width: 100%;
}
	
	
}
