/*@font-face {
	font-family:"Modesto Condensed";
	src: url("Modesto_Condensed_Light.ttf");
}
*/

h1 {
	font-size:30px;
}
* {
	box-sizing: border-box;
}
body {
	/*	font-family: Arial, Helvetica, sans-serif;*/
/*	font-family:"Times New Roman", Times, serif;*/
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
	background-image: url("../img/bg2.jpg");
	width: 80%;
	margin: auto;
}
/* Style the header */
header {
 //background-color: #666;
	padding: 30px;
	text-align: center;
	font-size: 35px;
	color: white;
}
/* Container for flexboxes */
section {
	display: -webkit-flex;
	display: flex;
}
/* Style the navigation menu */
nav {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	background:#F8D5B5;
	padding: 20px;
}
/* Style the list inside the menu */
nav ul {
	list-style-type: none;
	padding: 0;
}
/* Style the content */
article {
	-webkit-flex: 6;
	-ms-flex: 6;
	flex: 6;
	background-color: #FFEFF4;
	color: #582D30;
	padding: 30px;
	width: 100%;
}

article a:hover {
	text-decoration:underline;
	
}
/* Style the footer */
footer {
	background-color: #F8D5B5;
	padding: 10px;
	text-align: center;
	color: white;
}

/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
@media (max-width: 600px) {
 section {
 -webkit-flex-direction: column;
 flex-direction: column;
}
}/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 11 aug 2024, 14:22:12
    Author     : Rogier
*/

/* Collapsible */

.collapsible {
	/*	font-family:"Times New Roman", Times, serif;*/
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
	background-color: #f4bb86;
	color: #582D30;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 20px;
}
.collapsible:hover {
	background-color: #f1ad6f;
}
.collapsible:after {
	/*content: '\002B';*/
	/*color: #582D30;*/
/*	font-weight: bold;*/
	float: right;
	margin-left: 5px;
}
.active:after {
 //content: "\2212";
}
.collapsible a:visited, a:active, a {
	color: #582D30;
	text-decoration: none;
}


.listcontent {
	/*	padding: 0 18px;*/
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	background-color: #fae2cc;
}
.listcontent p {
	padding: 0 18px;
}

.intro-text {
	text-align: center;
	font-family: Bookmania Regular;
	font-size: 18px;
	font-style: italic;
}
.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxWiki stylexxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.wikicontainer {
	display: flex;
	justify-content: space-between;
	max-width: 100%;
	margin: 0 auto;
}
.wikileft-div, .wikiright-div {
	margin: 10px;
	padding: 20px;/*background-color: #ddd;*//*border: 1px solid #ccc;*/
}
.wikileft-div {
	flex: 4;/*background-color: #b3d9ff; /* Light blue */
}
.wikiright-div {
	/*background-color: #F4BB86; /* Light orange */
	background-color:#F8D5B5;
	flex: 2;
}
.wikirightdivider {
	background-color:#F4BB86;
}
.npclistwrapper {
/*	background-color:#0F0;*/
	float:left;
	width:100%;
	display:flex;
}
.npclist {
	flex: 1 1;
	background-color:#F8D5B5;
	float:left;
	width:auto;
	/*	border-left:solid 2px #582D30;*/
	margin:0 0 0 15px;
	padding:10px;
}

.npclist a:hover {
	text-decoration:underline;
}