/*Header*/
header {
	display: flex;
	align-items: center;
	padding: 20px;
	background-color: #FF8C42;
	margin: 0;
}

.logo {
  max-width: 100px;
  height: auto;
}

header h1 {
  flex-grow: 1;
  text-align: center;
  margin: 0;
  font-size: 1.8rem;
}

nav a {
  margin-left: 15px;
}
 
/*Footer*/

footer {
	display: flex;
	align-items: center;
	padding: 20px;
	background-color: #FF8C42;
	flex-direction:column;
	text-align: center
}

footer p {
	display: block;
 	margin: 0;
}

footer a {
	text-decoration: none;
	color: black;
	font-weight: bold;
}

/*Body*/
h2 {
	color: white;
}


a{
  	color: black;
  	font-weight: bold;
	text-decoration: none;
}

a:hover{
	color: #D3D3D3;
}

body {
    font-family: sans-serif;
}

.body {
	background-image: url("Medien/bild.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/*Index*/

figcaption{
	display:flex;
	background-color: #D3D3D3; 
	font-size: 50%;
	width: fit-content;
}

#Bild {
	width:100%;
	height:100vh;
	object-fit: cover;
}

figure{
	margin: 0;
	height: 100vh;
}
/*Übungskatalog*/
label:hover{
	transform: scale(1.1);
}
section label{
	color: black;
	font-weight: bold;
	display: block;
	padding: 10px;
	margin: 20px;
	width: fit-content;
}

section.Abschnitt-1 label, section.Abschnitt-1 article{
	background-color: #FFCE00;
	border: 2px solid #E6B800;
	border-radius: 5px; 
}

section.Abschnitt-2 label, section.Abschnitt-2 article{
	background-color: #FF4C4C;
	border: 2px solid #D43F3F;
	border-radius: 5px; 
}

section.Abschnitt-3 label, section.Abschnitt-3 article{
	background-color: DarkOrange;
	border: 2px solid #FFA500;
	border-radius: 5px; 
}

.bild, .Material, .Ablauf{
	width: 40%;	
	display: block;
	max-height: 400px;
	padding: 20px;
	object-fit: contain;	
	margin: 15px;
}

#toggle-a{
	display: none;
}

#toggle-a:checked + .a{
	display:flex;
}

#toggle-b{
	display: none;
}

#toggle-b:checked + .b{
	display:flex;
}

#toggle-c{
	display: none;
}

#toggle-c:checked + .c{
	display:flex;
}

#toggle-d{
	display: none;
}

#toggle-d:checked + .d{
	display:flex;
}

#toggle-e{
	display: none;
}

#toggle-e:checked + .e{
	display:flex;
}

#toggle-f{
	display: none;
}

#toggle-f:checked + .f{
	display:flex;
}

#toggle-g{
	display: none;
}

#toggle-g:checked + .g{
	display:flex;
}

#toggle-h{
	display: none;
}

#toggle-h:checked + .h{
	display:flex;
}

#toggle-i{
	display: none;
}

#toggle-i:checked + .i{
	display:flex;
}

#toggle-j{
	display: none;
}

#toggle-j:checked + .j{
	display:flex;
}

#toggle-k{
	display: none;
}

#toggle-k:checked + .k{
	display:flex;
}

.a, .b, .c, .d, .e, .f, .g, .h, .i, .j, .k{
	display: none;
}


/*Trainingspläne*/
section.Pläne div:hover{
	transform: scale(1.1);
}
section.Pläne div{
	color: black;
	display: inline-block;
	border-radius: 5px;
	padding: 10px;
	margin: 10px;
	width: 20%;
	height: 150px;
	text-align: center;
}

section.Pläne div.w{
	background-color: #FFCE00;
	border: 2px solid #E6B800;
	margin-left: 35px;
}

section.Pläne div.x{
	background-color: #FF4C4C;
	border: 2px solid #D43F3F;
}

section.Pläne div.y{
	background-color: #FF6347;
	border: 2px solid #D43F3F;
}

section.Pläne div.z{
	background-color: DarkOrange;
	border: 2px solid #FFA500;
	margin-right: 35px;
}

/*Video*/
table{
	background-color: #D3D3D3; 
	font-size: 50%;
}
#table{
	display: flex;
	justify-content: center;
}

#video{
	display: flex;
	justify-content: center;
}
video{
	object-fit: cover;
	width: 80%;
	height: auto;
}