/* phancy - Typography - beginn */

@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 100;
  src: url("../tq5_fonts/fira sans/fira-sans-300.woff2") format('woff2');
}


/* verhindert die Margins, die Browsers automatisch einfügen */
* {
    margin: 0;
	padding: 0;
}

/* fürs tq-Logo */
img {
	margin-top: 20px;
}

.mus {
	background-image: url("../tq5_hintergruende/phancy_hintergrund.jpg"); /* hier ändern */
}

.mus img {
	width: 100%;
	height: auto;
	max-width: 400px;
	min-width: 200px;
	padding: 15px;
}

/* Um die Fontgröße responsive zu machen */
html {
	font-size: calc(15px + 0.390625vw);
}

h1 {
	font-family: Tenor Sans;
	font-size: 2.5rem;
	line-height: 250%;
	text-align: center;
	color: MediumBlue;
	padding-top: 10px;
	padding-bottom: 10px;
}


.mus h2 {
	font-family: 'Fira Sans';
	font-size: 1.7rem;
	color:  MediumBlue;/* hier ändern */
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	background-color: LightSkyBlue;
}

.mus h3 {
	font-family: 'Fira Sans';
	font-size: 1.15rem;
	color:  MediumBlue;/* hier ändern */
	text-align: center;
	margin-top: 0px; /* das hat den Abstand zu nav entfernt! */
	margin-bottom: 0px; /* das hat den Abstand zu nav entfernt! */
}

.mus p {
	font-family: 'Fira Sans';
	font-size: 1rem;
	color:  MediumBlue;/* hier ändern */
	text-align: center;
	line-height: 200%;
}

.footer p {
	font-family: Oswald;
	font-size: 0.9rem;
	line-height: 3em;
	text-align: center;
	padding-bottom: 0; /* irgendwie notwendig, sonst bleibt etwas Abstand bis Ende der Seite! */
	margin-bottom: 0;
	color: #023020;
	background-color: #F0F8FF;
}
	
.mus a:link {
text-decoration: none;
color: MediumBlue; /* hier ändern */
font-size: 1rem;
font-weight: 400;
}

.mus a:visited {
color: orange;
text-decoration: none;
}

.mus a:hover {
color: white;
text-decoration: none;
background-color: rgb(64,173,73);
}

/* phancy-typography - End*/

/* css fürs Akkordeon  - Beginn */

details {
font-family: 'Oswald';
color:  Maroon; /* hier ändern */
text-align: center;
border-radius: 3px;
}

summary {
font-family: 'Oswald';
color:  Blue; /* hier ändern */
text-align: center;
cursor: pointer;
padding: 0.3rem;
}

.akkordeon-inhalt {
/*padding: 1rem 1rem 1px 1rem;*/
}

/* Der verzögerungseffekt */

details[open] summary ~ * {animation: sweep .7s ease-in-out;}

@keyframes sweep {
 0%    {opacity: 0; margin-left: -20px}
 100%  {opacity: 1; margin-left: 0px}
}

/* css fürs Akkordeon  - Ende */