html {
	scroll-behavior: smooth;
	margin: 0;
	padding: 0;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	background-image: linear-gradient(black, rgb(25,25,25), black, rgb(25,25,25), black);
	font-size: 20px;
}

.anchor {
	position: absolute;
	top: -100px;
	pointer-events: none;
}

#text {
	display: none;
}

.sticky #text {
	display: inline;
	font-family: 'Amatic SC', sans-serif;
	font-weight: bolder;
	font-size: 35px;
	margin: 2px;
	flex: 1;
}

#header-fixed {
	position: fixed;
	top: 0;
	z-index: 10;
	width: 100vw;
}

.sticky #header {
	height: 50px;
	width: 100vw;
	background-image: none;
	background-color: white;
	transition: all 0.3s ease;
}

.sticky #menu-container {
	transition: all 0.3s ease;
	height: 100%;
}

.sticky #mainlogo-image {
	height: 50px;
	margin-top: 0;
	padding-top: 1px;
}

.sticky #tanuki-chara-image {
	height: 50px;
	padding-top: 0;
}

.sticky #socialmedia-container {
	margin-top: 0;
}

.sticky #socialmedia {
	flex: 2;
}

.sticky #socialmedia .sm-ad {
	display: none;
}

#header {
	display: flex;
	height: 250px;
	background-image: url(assets/header1.png);
	background-repeat: no-repeat;
	background-size: 100% 250px;
	transition: all 0.3s ease;
}

#platzhalter {
	width: 100%;
	height: 330px;
}

#socialmedia {
	flex: 1;
	display: flex;
	flex-direction: column;
}

#socialmedia .sm-ad {
	font-family: 'Amatic SC', sans-serif;
	margin-left: 50px;
	margin-top: 80px;
}

#socialmedia #sub {
	margin-top: 0;
}

#socialmedia-container {
	display: flex;
	flex-direction: row;
}

#socialmedia img {
	width: 40px;
	float: left;
	padding: 5px;
	filter: grayscale(75%);
	flex: 1;
}

#socialmedia img:hover {
	filter: grayscale(0%);
}

#socialmedia #twitch {
	margin-left: 50px;
	position: sticky;
	top: 0;
}

#mainlogo {
	flex: 3;
}

#mainlogo-image {
	height: 250px;
	display: block;
	margin: auto;
	padding-top: 0;
}

#tanuki-chara {
	flex: 1;
}

#tanuki-chara-image {
	height: 210px;
	display: block;
	margin: 0 auto;
	padding-top: 10px;
}

#menu-container {
	background-color: black;
	height: 100%;
	transition: all 0.3s ease;
	transform: translateY(-2px);
}

#menu {
	margin: 0 auto;
	width: 33%;
	display: flex;
}

#desktop-menu {
    display: flex;
    width: 100%;
}

#menu a {
	text-decoration: none;
	font-size: 50px;
	font-family: 'Amatic SC', sans-serif;
	font-variant: small-caps;
	color: white;
	text-align: center;
	padding: 7px 2%;
	display:block;
	flex: 1;
	transition: all 0.3s ease;
	/*border-top: 1px solid #222222;
	border-bottom: 1px solid #222222;*/
}

#menu #burgermenu {
	display: none;
}

#menu a:hover {
	color: red;
}

.content {
	background-color: black;
}


.subcontent {
	min-height: 300px;
	margin-bottom: 30px;
	font-family: 'Actor', sans-serif;
}

.subcontent img {
	height: 300px;
	border: 10px solid white;
	display: block;
	margin: 0 auto;
}

.subcontent .tanuki-meme {
	border-style: none;
}

img#sleepingtanuki {
	width: 50% !important;
}

.content-headline {
	text-align: center;
	text-decoration: none;
	font-variant: small-caps;
	font-family: 'Amatic SC', sans-serif;
	font-size: 90px;
	line-height: 0;
	color: white;
	text-shadow: 1px 1px 1px red, -1px 1px 1px red, 1px -1px 1px red, -1px -1px 1px red;
	margin-top: 0;
}

h1 .sprung {
	display: block;
	height: 170px;
	position: relative;
	top: -170px;
	pointer-events: none;
}

h1 .sprung#sprung-friend {
	height: 1px;
	margin-bottom: 170px;
}

.content-headline-container {
	width: 50%;
	display: block;
	margin: 0 auto;
}

.content-text {
	color: white;
	font-family: 'Actor', sans-serif;
	text-align: center;
	font-size: 20px;
	display: block;
    width: 75%;
    margin: 20px auto;
}

#footer {
	color: white;
	font-family: 'Amatic SC', sans-serif;
	font-size: 20px;
	display: flex;
	flex-direction: column;
	width: 100%;
	text-align: center;
	margin-top: 150px;
}

#tanuki-footer-image {
	height: 100%;
	width: 100%;
	border-bottom: 1px solid white;
	width: 23%;
	margin: 0 auto;
}

#footer-menu {
	background-color: black;
}

#footer-menu a {
	text-decoration: none;
	color: white;
	font-size: 30px;
	margin: 10px;
}

#footer-menu a:hover {
	color: red;
}

#copyright {
	padding-top: 10px;
	background-color: black;
}

.entry-content {
	border: 10px solid red;
	border-radius: 10px;
	padding: 30px;
	margin: 30px;
	color: white;
	font-family: 'Actor', sans-serif;
}

.entry-content h1, h2, h3 {
	font-family: 'Amatic SC', sans-serif;
}

.entry-content h1 {
	font-size: 40px;
}

.entry-content h2 {
	font-size: 35px;
}

.entry-content h3 {
	font-size: 30px;
}

.entry-content a {
	text-decoration: underline;
	color: red;
}

.entry-content a:hover {
	text-decoration: none;
}

.back-home {
	color: red;
    font-family: 'Amatic SC';
    position: absolute;
    left: 100px;
    font-size: 35px;
}

.back-home:hover {
	font-weight: bolder;
}

div.back {
	width: 100px;
    height: 40px;
    padding: 10px;
}

img#heart {
	display: none;
	transition: all 0.3s ease-in;
}