
/*
styles apply for mobile view!
please change specific styles for screens with @media only
*/


/* general layout */

html {
  scroll-behavior: smooth;
}

* {
	box-sizing: border-box;
}

.row::after {
	content: "";
	clear: both;
	display: table;
}

[class*="col-"] {
	float: left;
	padding: 1px;
}

/* column grid for mobile phones: */
[class*="col-"] {
	width: 100%;
	margin: 0px;
}

/* column grid for desktop and tablets: */
@media only screen and (min-width: 640px) {
	.col-s-1 {width: 5.33%;}
	.col-s-4 {width: 33.33%; min-width: 640px; }
	.col-s-7 {width: 61.33%;}
}


/* general styles */

body {
  font-family: sans-serif;
	font-size: 15px;
  -webkit-text-size-adjust: 100%;
	color: #000;
	line-height: 23px;
	transition: color 0.3s ease;
  background: url(../felix_trumpet_wallpaper.jpg) no-repeat left fixed;
  background-size: cover;
}

h1 {
  font-weight: normal;
  font-size: 1em;
  padding-top: 30px;
}

.addedinfo {
  font-size: 0.8em;
  padding-left: 3px;
  color: grey;
}

.hidden { display: none;}

.mobile-hide { display: none;}
@media only screen and (min-width: 640px) and (min-height: 440px) {
.mobile-hide { display: inline;}
}


/* general link styles */

a { transition: color 0.3s ease;}
a:link, a:visited { text-decoration: underline; color: #000;}
a:hover, a:active { text-decoration: none; color: #a703e3;}
a img { border: none; }


/*header styles*/

header {
  position: relative;
	width: 100%;
  word-spacing: 0.5px;
  border-radius: 5px;
  display: inline-block;
	z-index: 99;
	background-color: rgba(255, 255, 255, 0.9); /* opacity */
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
@media only screen and (min-width: 640px) and (min-height: 440px) {
	header {
    position: -webkit-sticky;
    position: sticky;
    top: 18px;
	}
}

header ul {
	padding-left: 0px;
  margin: 9px;

}

header ul li {
	display: inline-block;
}

.sprache {
	float: right;
  color: grey;
}

header a:link, header a:visited { text-decoration: none;}

.sprache a:link, .sprache a:visited { color: grey;}
.sprache a:hover, .sprache a:active { color: #a703e3;}

/* styles for content box */

section {
	position: relative;
	padding-top: 30px;
  margin: 9px;
}

.player-container {
	position:relative;
	padding-top:56.25%;
	margin-top: 5px;
	margin-bottom: 15px;
}

.player-embed {
	position: absolute;
	top: 0;
	left: 0;
	border: 0;
	width: 100%;
	height:100%;
}

ul {
	padding-left: 0px;
  margin-top: 0px;
}

ul li {
	display:block;
	padding-left: 0px;
}


/* styles for footer */

.footer-container {
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	height: 100vh; /* hier die Länge des nach untenscrollens einstellen*/
}

footer {
	position: -webkit-sticky;
	position: sticky;
	margin-top: 60px;
	bottom: 5px;
	width: 100%;
  font-size: 0.9em;
  color: grey;
	align-self: flex-end;
}

footer ul {
	padding-left: 0px;
  margin: 9px;
}

footer ul li {
	display: inline-block;
	padding-left: 0px;
}

.totop {float: right;}

footer a:link, footer a:visited	{ text-decoration: none; color: grey;}
footer a:hover, footer a:active { text-decoration: none; color: #a703e3;}
