/* Stylesheet für Selfhtml Design 10 responsives Grid Layout ab Z. 262 (von mir angepasst zuletzt am 14.01.2025)   */

/* Layout Hauptelemente und Boxen (bei Main nur Außenränder links rechts, in Boxen Außenränder oben unten, wegen verschiedener Höhen der Boxen)*/

html {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
*,::before,::after {
	box-sizing: inherit;
}

body {
    background: darkgreen linear-gradient(90deg, transparent 5%, rgba(255,255,255,.3) 10%);
	background-size: 0.4em;
	margin: 1px;
	font-family: calibri;
}
header {
	position: sticky;
	top: 0;
	z-index: 9;
	margin: auto;
	max-width: 94%;
}
main {
	max-width: 94%;
	padding-left: 5%;
	padding-right: 5%;
    padding-top: 3em;
	background: white;
	margin: auto;
	border-radius: 0.0em 0.0em 0.5em 0.5em;
	text-align: justify;
}
main table {
	grid-column: 1 / 4;
	display: block;
}
footer {
	background: darkgreen;
	margin: auto;
    max-width: 100%;
	padding-left: 10%;
	padding-right: 10%;
	padding-bottom: 3em;
	padding-top: 2em;
    margin-top: 2em
}


/* Layout für Bildschirme, die breiter als 1300px (811,25em) sind.*/

@media only screen and (min-width: 1300px) {
header {
	position: sticky;
	top: 0;
	z-index: 9;
    margin-top: 3em;
}
main {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr; 
	grid-template-rows: auto;
	grid-row-gap: 0.1em;
	grid-column-gap: 1%;
}
footer {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr; 
	grid-template-rows: auto;
	grid-column-gap: 1%;
}
}



/* Box 1 für Einleitung Seite oben*/

.box1 {
	max-width: 94%;
	min-height: 45em;
	background: white;
	padding-left: 5%;
	padding-right: 5%;
    padding-top: 5em;
    margin-top: 1em;
	margin-bottom: 1em;
	margin: auto;
	text-align: justify;
}



/* Box Chromatic*/

.box2 {
	max-width: 94%;
	min-height: 53em;
	background: white;
	padding-left: 5%;
	padding-right: 5%;
	padding-bottom: 2em;
	padding-top: 9em;
	margin: auto;
	margin-top: 0em;
	text-align: justify;
   	border-radius: 0.5em 0.5em 0.5em 0.5em;
}


.box3 {
	max-width: 94%;
	min-height: 53em;
	background: white;
	padding-left: 5%;
	padding-right: 5%;
	padding-bottom: 2em;
	padding-top: 4.5em;
	margin: auto;
	margin-top: -2.5em;
	text-align: justify;
   	border-radius: 0.5em 0.5em 0.5em 0.5em;
}


/* Box Stammtöne, notas básicas*/

.box16 {
	max-width: 94%;
	min-height: 70em;
	background: white;
	padding-left: 5%;
	padding-right: 5%;
	padding-bottom: 2em;
	padding-top: 7.5em;
	margin: auto;
	margin-top: 2em;
	text-align: justify;
   	border-radius: 0em 0em 0.5em 0.5em;
}



/* Box Konzertgitarre, guitarra de concierto unter style.css*/
/* Box Stimmtöne unter style.css*/



/* Halter für Foto*/

figure {
	position: relative;
	width: 30%;
	height: auto;
	margin-top: 7px;
	margin-right: 0px;
	float: left
}
figcaption {
	text-align: justify;
	padding-right: 0%;
	font-style: italic;
	font-size: 90%;
	margin-bottom: 5%
}


/** =========== Texte, Schriften, Absätze, Links ============= **/
p {
	font-family: calibri;
	font-size: 1.2em;
	font-weight: normal;
	letter-spacing: 0.02em;
	word-spacing: 0.02em;
	color: #151515;
}
h1 {
	font-family: calibri light; 
	letter-spacing: 0.05em; 
	font-size: 2.3em; 
	font-weight: 600;
	color: black;
}
h2 {
	font-family: calibri light;
	font-size: 1.5em;
	font-weight: 500;
	color: black;
	word-spacing: 0.03em;
	letter-spacing: 0.1em;
}
footer h3 { 
	font-family: calibri;
	font-size: 1.3em;
	font-weight: 500;
	color: white
}

footer p {
	font-family: calibri;
	font-size: 1.2em;
	font-weight: normal;
	letter-spacing: 0.02em;
	word-spacing: 0.02em;
	color: white;
}



a {
	color: black;
	text-decoration: none;
}
a:hover {
	color: darkgreen;
    text-decoration: underline;
}
 a:visited {
	color: silver;
}


footer a {
	color: white;
	text-decoration: none;
}
footer a:hover {
	color: white;
    text-decoration: underline;
}
footer a:visited {
	color: white;
}
footer ul {
	list-style-type: square;
	margin-left: -1em;
}
footer li {
	color: white
}

footer img {
    class: zoom;
    height: auto;
    width: 30%;
    min-width: 20px;
    padding-left: 1%
}


/** ===================== Linien für das Notensystem =================== **/

.line-1 {
	border: 0;
	height: 1px;
        background-image: linear-gradient(to right, #ccc, #FFA54F, #ccc);
}
.line-2 {
	border: 0;
	height: 2px;
        background-image: linear-gradient(to right, #ccc, #8A0808, #ccc);
}
.line-3 {
	border: 0;
	height: 3px;
        background-image: linear-gradient(to right, #ccc, #0B610B, #ccc);
}
.line-4 {
	border: 0;
	height: 2px;
        background-image: linear-gradient(to right, #ccc, #F3F781, #ccc);
}
.line-5 {
	border: 0;
	height: 1px;
        background-image: linear-gradient(to right, #ccc, #FE2E9A, #ccc);
}




/* Container für Abbildung und Text */
.container {
	position: relative;
	text-align: left;
	width: 100%;
	height: auto
}

/* Positionierung Text im Banner */
.positionierung {
	position: absolute;
	top: 8%;
	left: 6%;
	width: 88%;
}
