body {
	margin: 5%;
	padding: 0;
	background-color: #18191A;
	font-family: Arial;
	color: white;
}

.nav-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6%;
    min-height: 60px;     /* Mindesthöhe für die Navbar */
    display: flex;
    background: white;
}

.nav-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link {
    display: flex;
    flex-direction: column;   /* Bild oben, Text darunter */
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: black;
    font-size: clamp(0.8rem, 2vw, 1rem);
    height: 100%;
	transition: transform 0.2s ease;
}

.nav-link:hover {
	transform: scale(1.2);
}
	
.nav-section img {
	height: 60%;
	min-height: 24px;   /* Mindesthöhe der Icons */
	max-height: 32px;   /* optional Obergrenze, damit sie nicht zu groß werden */
}
	
.nav-section.plus-wrapper {
	position: relative; /* Referenz für den Button */
}

.plus {
	position: absolute;
	bottom: 0;              /* immer am Boden */
	display: flex;
	justify-content: center;
	align-items: center;
	height: 10vh;
	aspect-ratio: 1/1;
	background-color: white;
	border-radius: 100px;
	transition: transform 0.8s ease;
}
	
.plus:hover {
	transform: scale(1.2);
}
	
.plus img {
    height: 60%;
    min-height: 40px;   /* Mindesthöhe der Icons */
    max-height: 100px;   /* optional Obergrenze, damit sie nicht zu groß werden */
}