		.container-kostym{
			width: 90%;
			padding: 20px;
			margin: 20px auto;	 
			display: flex;
			flex-direction: row;
			justify-content: center;
		}
		

		.box{
			width: 250px;
			margin: 0 10px;
			box-shadow: 0 0 20px 2px rgba(0, 0, 0, .1);
			transition: 1s;

		}
		.box img{
			display: block;
			width:100%;
			border-radius: 15px;
		}
		.box:hover{
			transform: scale(2.0);
			z-index: 2;
		}
		
		
				/* Light mode styles */
		body {
			font-family: Arial, sans-serif;
			transition: color 0.5s ease, background-color 0.5s ease;
			background-color: #ffffff; /* Default background color */
			color: #333; /* Default text color */
		}

		/* Dark mode styles */
		body.dark-mode {
			color: #fff; /* Dark mode text color */
		}

		/* Sun and moon styles */
		.brightness-controls {
			position: fixed;
			top: 20px;
			right: 20px;
			z-index: 9999;
		}

		.brightness-controls button {
			background: none;
			border: none;
			cursor: pointer;
		}

		/* Default wiki-page styles */
		.wiki-page {
			background-image: url(assets/images/wiki_background.png);
			background-repeat: no-repeat;
			background-position: bottom center;
			padding-top: 20px;
			padding-bottom: 50px;
			min-height: 500px;
		}

		/* Dark mode wiki-page styles */
		.wiki-page.dark-mode {
			background-image: url(assets/images/wiki_background6.png);
			background-repeat: no-repeat;
			background-position: bottom center;
			padding-top: 20px;
			padding-bottom: 50px;
			min-height: 500px;
		}