@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
}

*,
*:after,
*:before {
	box-sizing:border-box;
}

html,
body {
	height : 100%;
	margin: 0;
	padding: 0;
}

body {
    /*font-family: Lato,'Helvetica Neue',Helvetica,Arial,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;*/
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    font-size: 1.125rem;
	line-height: 1.5;
	font-weight: 400;

	color: #2a2a2e;
	background-color: #f0f0f0;
    
    background-image: url(../images/bg-light.jpg);
    background-position: 50% 0;
    background-attachment: fixed;
}

p {
	margin: 0 0 16px 0;
}

a {
	color: #6E47A4;
}


/* layout / Sticky Footer
   ============================================================ */

.container {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}
.content {
	flex: 1;
}
.container {
    margin: 0 auto;
    height: 100%;
    width: 100%;
    max-width: 680px;
    padding-bottom: 80px;
    padding: 20px;
}


/* header 
   ============================================================ */

header {
	margin-bottom: 32px;
	text-align: center;
}

.logo {
	width: 120px;
	margin: 0 auto;
}
.logo a {
	color: inherit;
}
.logo a img {
	border: 0;	
}
.logo img {
    max-width: 100%;
    height: auto;
}
.logo .logo-light {
        display: none;
    }
.logo .logo-dark {
    display: block;
}

.brand {
	text-align: center;
	font-weight: bold;
	margin-top: -50px;
	text-shadow: 0px 0px 4px #f0f0f0, 0px 0px 10px #f0f0f0;
}
.brand a {
	color: inherit;
	text-decoration: none;
}


.brand,
.brand-description {
	display: none;
}


h1 {
	font-size: 1.5rem;
	line-height: 1.2;
	/*font-family: 'IM Fell English',Georgia,'Times New Roman',Times,serif;*/
	margin: 16px 0 16px 0;
}
h1 a {
	color: inherit;
	text-decoration: none;
}
h2 {
	font-size: 1.1rem;
	line-height: 1.2;
	text-transform:  uppercase;
	margin: 0 0 36px 0;
}


/* content
   ============================================================ */

.content {}

ul.links {
	list-style: none;
	margin: 0;
	padding: 0;
	font-weight: bold;
}

ul.links li {
	margin-bottom: 16px;
	border: 2px solid #2a2a2e;
	border-radius: 0;
	text-align: center;
}

ul.links li a {
	display: block;
	padding: 16px;
	text-decoration: none;
	background-color: #2a2a2e;
	color: #f0f0f0;
	transition: background-color 0.5s ease, color 0.5s ease;
}
ul.links li a:hover {
	background-color: transparent;
	color: #2a2a2e;
}


/* Footer
   ============================================================ */

footer {
	padding-top: 32px;
	text-align: center;
	font-size: 0.8rem;
	opacity: 0.15;
}
footer a {
	color: inherit;
	text-decoration: none;
}


/* responsive
   ============================================================ */

@media (min-width:768px) {
	.brand {
    	margin-top: 0;
    }
	h1 {
		font-size: 2.49975rem;
	}
	h2 {
		font-size: 1.5rem;
	}
}


/* dark mode
   ============================================================ */

@media (prefers-color-scheme: dark) {
    /* CSS Code wenn Dark Mode aktiv */
	body {
	    background-color: #232323;
	    color: #d4d4d5;
	    background-image: url(../images/bg-darker.jpg);
	}
	.logo .logo-light {
        display: block;
    }
    .logo .logo-dark {
        display: none;
    }
    .brand {
    	text-shadow: 0px 0px 4px #232323, 0px 0px 10px #232323;
    }

	h1 a {
		color: #d4d4d5;
	}
	ul.links li {
		border: 2px solid #f0f0f0;
	}
	ul.links li a {
		background-color: #f0f0f0;
		color: #2a2a2e;
	}
	ul.links li a:hover {
		background-color: transparent;
		color: #f0f0f0;
	}

}







