style-klein.css#allcontent {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	width: 70%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;

	margin-left: auto;
	margin-right: auto;

	overflow: hidden;
}

footer {}


header {
	border-color: #ff0000;
	margin: 10px;
}

article {
	border-color: #5f0b0b;
	margin: 10px;
	margin-bottom: 5px;
	margin-left: 50px;
	float: left;
}

aside {
	margin: 10px;
	margin-top: 5px;
	margin-right: 50px;
	float: right;

}

#produktbild {
	width: 70%;
	vertical-align: middle;
}


#left {
	float: none;
	width: 100%;
	/* background-color: yellow; */
}

#right {
	float: none;
	height: 400px;
	width: 100%;
	/* background-color: red; */
}

.eigenschaft-normal {

	height: 60px;
	margin: 50px;
	padding: 15px;
	border: gray;
	border-style: solid;
	border-radius: 10px;
	transition: all 0.5s ease;
}

.eigenschaft-betreten {

	height: 80px;
	margin: 50px;
	padding: 15px;
	border: blue;
	border-style: solid;
	border-radius: 10px;
	transition: all 0.5s ease;
}

.eigenschaft-titel {
	font-size: large;
	font-weight: bold;
}

.eigenschaft-wert {
	font-weight: lighter;
}

/* Navigation */
nav {
	background-color: #5f0b0b;
	color: white;
	padding: 0.5rem 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 25px;
}

nav .logo {
	font-size: 1.2rem;
	font-weight: bold;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 1rem;
	margin: 0;
	padding: 0;
}

nav ul li a {
	color: white;
	text-decoration: none;
	font-size: 1rem;
}

nav ul li a:hover:not(.active) {
    background-color: #9b0a0a;
  }

nav ul li a.active {
    background-color: #ff0000;
  }

/* Hamburger-Button */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.menu-toggle span {
	height: 3px;
	width: 25px;
	background: white;
	margin: 4px 0;
	transition: 0.3s;
}


nav ul {
	display: none;
	flex-direction: column;
	background-color: #5f0b0b;
	position: absolute;
	top: 60px;
	right: 0;
	width: 200px;
	padding: 1rem;
}

nav ul.show {
	display: flex;
}

.menu-toggle {
	display: flex;
}