:root {
	--color_1: #e26332;  /* orange */
	--color_2: #871ef3;  /* violett */
}

*, *::after, *::before {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: inherit;
}
html {
	font-size: 62.5%;  /* bewirkt ein einfaches Umrechnen von Pixel zu rem!, s. font-size im BODY */
	-webkit-text-size-adjust: none;
}
body {
	position: relative;
	margin: 0;
	padding: 0;
	font-family: 'helvetica neue', arial, sans-serif;
	color: #fff;
	background-color: var(--color_2);
	font-size: 1.6rem;      /* 1.6rem = 16px,  oder zB: 1rem = 10px;  0.5rem = 5px, etc */
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0.005rem;
	box-sizing: border-box;
}
body.all {
	color: var(--color_1);
}

h2 { 
	color: var(--color_1); 
	font-size: 3rem; 
}

img { 
	display:inline-block;
	max-width: 100%;
	height:auto;
}

p { margin-bottom: .5rem; }

.wrap{ 
	max-width: 72rem; 
	margin: 12% auto 2rem auto; 
	padding:1rem; 
}


/* ====================== CSS GRID  ===========================================  */
/* Tutorial, z.B. hier: https://css-tricks.com/snippets/css/complete-guide-grid/ */

.grid-container {
	display: grid;
	grid-template-columns: 1fr 3.7fr 1fr;  /* Spalten */
	grid-template-rows: 8rem auto 8rem; /* Zeilen  */
	column-gap: .3rem;
	
	width: 100%;
	max-width: 100%;
	background-color: transparent;
}
.grd {
	background-color: transparent;
	padding: 0;
	font-size: 1.6rem;
	color: #000;
}

.grd.centro img.dreieck {
	display: block;
	width: 100%;
	max-width:100%;
	height: auto;
	cursor: pointer;
}
.grd.centro.gauche { text-align: right; }
.grd.centro.mitte {background-color: var(--color_1);}
.home .grd.centro.mitte {
	background-image: url('../bilder/mitte_sten.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
.home .grd.centro.mitte:hover {
	background-image: url('../bilder/max-frei-65.jpg');
}
.uno .grd.centro.mitte {
	background-image: url('../bilder/max-frei-65.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.centro-inner { 
	color: var(--color_2);
	padding: 1rem .6rem .6rem .6rem;
	line-height: 1.2;
}
.centro-inner a.mail { 
	color: var(--color_2);
	text-decoration:underline;
}

.centro-inner p.data-vorschau {
	padding: .7rem 0;
	color: #fff;
	font-weight: 600;
}
.centro-inner p.vorschau-links a, 
.centro-inner p.vorschau-links a:visited {
	display: inline-block;
	color: var(--color_2);
	text-decoration: underline;
	margin-bottom: 1rem;
}

.grd.centro.mitte { position: relative; }
.grd.centro.mitte span.msg {
	position: absolute;
	top: 0;
	left:0;
	display:block;
	line-height: 1;
	padding: 0.3rem .6rem 0.6rem;
	font-size: 1.4rem;
	font-weight: 600;
	color: #fff;
}

.grd.top h2 { margin: 0 0 0 0; line-height:1; font-size: 2rem; }
.grd.btm h2 { margin: 4.2rem 0 0 0; line-height:1; font-size: 2rem; text-align: right; }


/* Form-Elemente ----------------------------- */

span.nline {display:block;}
form   { margin:0; padding: 1rem 0;}
label  { display: block; font-weight: 600; line-height:1.1; margin-bottom: .25rem; }
form p { margin-bottom:1rem; }
input,
input[type='text'] {
	padding: 3px 4px;
	font-family: 'helvetica neue', arial, sans-serif;
	font-size: 1.8rem;
	font-weight: 600;
	width: 98%;
	max-width: 98%;
	color: var(--color_1);   /* oder weiss -- wäre besser lesbar */
	background-color: var(--color_2);
}

/* Alle Anmeldungen ------------------ */
.all .wrap2 { width:100%; max-width: 120rem; padding:1.6rem;}
.all h1 { font-size:3.6rem; margin: 3rem 0; }
.all .tbl {width:100%;}
.all table {width:100%; border-collapse: collapse; font-size: 1.4rem; }
.all td, .all th { padding: 0 0.5rem; text-align:left; vertical-align:top; /* color: #000; */ }
.all th { color:#fff; }
.all tr th:nth-child(3),
.all tr td:nth-child(3) {display:none;}

.all tbody tr:nth-child(odd) { 
	color: var(--color_2); /*#000;*/
	background-color: var(--color_1); 
}


@media screen and (min-width: 640px) {
	.grd.top h2,
	.grd.btm h2 { font-size: 2.75rem; }
	
	.all tr th:nth-child(3),
	.all tr td:nth-child(3) {display:block;}
		
	.centro-inner p.vorschau-links a, 
	.centro-inner p.vorschau-links a:visited {
		margin-bottom: 0;
	}
	
	span.nline {display:none;} 
}
