
@font-face {
  font-family: 'Purisa';
  src:
    local('Purisa'),
    url('/fonts/Purisa/Purisa.ttf') format('truetype');
}

body {
	font-family: 'Purisa';
    background-color: #ffffff;
    font-size: 16px;
	min-height: 100vh;
    display: flex;
    flex-direction: column;
	margin:0px; /* wichtig damit main und der footer auch ganz links sind" */
}

.caption {
	margin-top: -5px; 
	padding:0;
	/*font-family: 'Kingthings Petrock', sans-serif;*/
	font-size: 26px;
	text-decoration: none;
	color: white;
}

.note {
	font-size: 12px;	
}

.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	background: #009999;
	color: white;
	height:35px;
	padding:10px;
}

.menu-right {
	position:fixed;
	display: flex;
    justify-content: center;
	top:15px;
	right:30px;
    margin-right: 20px;
}

.headericon {
	margin-left:10px;
	cursor: pointer;
}

.msticky {
	position: sticky;
	top:70px;	
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  /* width: 80%; */
}

#content-wrap {
  padding-bottom: 2.5rem;    /* Footer height */
}

.footer {
	width: 100%;
	margin: 0px;
	margin-top: auto; /* wichtig damit der footer immer unten bleibt! */
	padding: 20px;
    background: #009999;
	color: white;
    font-size: 14px;
    font-weight: bold;
}


/* Desktop-Ansicht */
@media (min-width: 600px) {
	
	/* TODO verstecken bei Desktop Ansicht, ist aber buggy (menu bleibt verschwunden)
	.menu-right {
		display: none;
	}
	*/
	
	/* Menu Desktop */
	.mcont {
		width: 20%;
		max-width: 200px;
		float:left;
		top:50px;
		height: auto;
		margin: 10px;
		margin-left: 0px;
		padding: 10px;
		background-color: white;
	}

	.container { 
    	width: 80%;
		max-width: 800px;
	}
	
	.footer {
		height: 30px;
	}
	
    .footer-right {
        flex-direction: row; /* Horizontale Anordnung */
    }
	
}


@media (hover: hover) {
	
	/* HOVER nur auf Geraeten, die hover unterstuetzen (nicht mobile, tablet) */
	
	.caption:hover {
		color: #ffffff;
	}
		
	.footerlink:hover {
		color: #ffffff;
	}
	
	.mlink:hover {
		color: #009999;
	}
	
	.linktoa:hover {
		background-color: #009999;
	}

	.blink:hover {
		color: #009999;
	}
	
	.cat:hover {
		background-color: #009999;
	}
	
	.free:hover {
		background-color: #009999;
	}
	
}

/* Mobile Ansicht */
@media (max-width: 600px) {
	
	.mcont {
		display: none;
	}
	
	/* Menu Mobile */
	.mcont {
		width: 200px;
		position: fixed;
		top:50px;
		right:0px;
		height: auto;
		margin: 10px;
		margin-left: 0px;
		padding: 10px;
		background-color: white;
	}
	
	.container { 
    	width: 100%;
		max-width: 800px;
	}
	
	.footer {
		height: 30px;
	}
	
    .footer-right {
        flex-direction: column; /* Vertikale Anordnung */
        align-items: flex-start; /* Links linksbuendig ausrichten */
    }
	
}

.footer-left {
	display: flex;
    float: left;
	margin: 5px;
}

.footer-middle {
    float: right;
    margin-left:20px;
    margin-right:20px;
}

.footer-right {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
    float: right;
    margin-right: 30px;
}

.footerlink {
	text-decoration: none;
	color: white;
	margin: 5px;
}

.footeritem {
	padding: 5px;	
}

.main {
	display: flex;
    justify-content: center; /* Horizontale Zentrierung */
    /* align-items: center; */ /* Vertikale Zentrierung */
	width:100%;
	height:100%
    padding: 0px;
    margin: 0px;
    margin-top: 55px;
    background-color: #eeeeee; 
}

.flexrow {
	display: flex;
	flex-wrap: wrap;
	/* flex-direction: row; */
	justify-content: center; /* Horizontale Zentrierung */
	align-items: flex-end;
	margin: 0px;
	padding: 0px;
	
}

.container { 
    float: left;
    height: auto;
    margin: 10px;
    padding: 10px;
    background-color: white;
}

.mlink {
	text-decoration: none;
	font-weight: bold;
	color: black;
	margin: 5px;
}

/* Affiliate */

.acont { 
    width: 320px;
	max-width: 95%;
    float: left;
    height: auto;
    margin: 5px;
    padding: 5px;
    background-color: white;
}

.alink {
	color: #cc3399;
}

.itemdesc {
	width: 300px;
	max-width: 90%;
	text-align: center;
	font-weight: bold;
	padding: 10px;
	margin: 10px;
}

/* Blog */

.blink {
	color: black;
	text-decoration: none;
}

/* End Blog */

.divide {
	background-color: black;
	color: white;
	font-weight: bold;
	padding: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.cat, .linktoa, .free, .bask {
	width: 300px;
	max-width: 90%;
	background-color: #666666;
	color: white;
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	padding: 10px;
	margin: 10px;
	cursor: pointer;
}

.bask {
	background-color: #990099;
}

.catlink {
	text-decoration: none;
}

.dellink {
	color: blue;	
	text-decoration-line: underline;
	cursor: pointer;
}

/* ADMINPANEL */

table,td,tr { 
	border-collapse: collapse; 
	border-style: solid;
	border-color: #ccc;
	border-width: thin;
	text-align: left;
}

th, td {
  padding: 5px;
}


.adminpanel {
	background: #ffffe6;
	position: fixed;
	width: 5px;
	margin-top: 70px;
	left: 0;
	padding:10px;
	height:100%;
	font-size: 12px;
	font-family: monospace;
	color: #666666;
	overflow: hidden;
	border-radius: 4px;
}

.adminpanel:hover {
 	width: 300px;
	overflow-wrap: break-word;
	word-break: break-all;
}


