html, body {
    height: 100%;
    margin: 0;
	font: 16px Times New Roman, serif;
}




#video-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Video nimmt gesamten Viewpoint ein */
}

#youtube_video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	border: 0;
}




header{
	background-color: #a61616;
	color: #16a69a ;
	font-size: 20px;
}

h1{
	margin: 0;
    height: 80px;
    display: flex;
    align-items: center; /* Vertikal zentriert */
	
	
}

h2{
	margin:0;
	align-items: center;
	justify-content: center;
	display: flex;
	color: #16a69a;
	font-size: 30px;
}

h3{
	margin: 0;
	align-items: center;
	justify-content: center;
	display: flex;
	color: #5c07e6;
	position: absolute;
	top: 0;
	padding: 2vh;
}

.scroll-container {
    display: flex;
    flex-direction: column; /* Vertikal ausgerichtet */
    min-height: 100vh; /* Volle Höhe des Viewports */
    background: linear-gradient(to bottom, #a61616, #a85656);
}

main {
    flex: 1; /* Füllt den Platz zwischen Header und Footer */
    padding: 20px;
}

nav {
    background-color: #bd2626;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Zentrierte Links */
    gap: 30px; /* Abstand zwischen den Buttons */
}

/* Navigationselemente */
nav ul li {
    margin: 1.1%;
    background-color: #FF5733;
    padding: 0;
    border-radius: 5px;
    position: relative; /* Erforderlich für die Positionierung des Dropdowns */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Der Button füllt das gesamte li aus */
nav ul li .dropbtn,
nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    background-color: transparent;
    border: none;
    padding: 20px 40px; /* Passt das Padding an, um das li auszufüllen */
    display: flex;
	cursor: pointer;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    position: relative; /* Sicherstellen, dass der Button das li ausfüllt */
	box-sizing: border-box; /* WICHTIG: Sorgt für sauberes Layout */
}

/* Hover-Effekt */
nav ul li a:hover,
nav ul li:hover .dropbtn {
    background-color: transparent;
    color: yellow;
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute; /* Dropdown unter dem li */
    top: 100%; /* Dropdown erscheint direkt unter dem li */
    left: 0;
	width: 100%;
    z-index: 10; /* Dropdown erscheint über dem Button */
    background-color: #FF5733;
    flex-direction: column; /* Vertikale Ausrichtung der Dropdown-Elemente */
	border-radius: 5px;
	box-sizing: border-box; /* Sorgt für sauberes Layout */
}

/* Dropdown wird angezeigt, wenn das li gehoved wird */
nav ul li:hover .dropdown-content {
    display: flex;
}

/* Styling für die Links im Dropdown */
.dropdown-content a {
    color: black;
    padding: 10px;
    display: block;
    text-decoration: none;
    transition: 0.3s;
    border-bottom: 1px solid #555;
}

/* Dropdown-Elemente sollen untereinander angezeigt werden */
.dropdown-content a:last-child {
    border-bottom: none; /* Entfernt die untere Grenze des letzten Dropdown-Elements */
}


/* Timeline */
.timeline-container {
  width: 100%;
  display: flex;
  justify-content: center; /* Zentriert die Zeitleiste */
  margin-top: 15vh; /* Alternativ kannst du hier auch einen Abstand hinzufügen */
}

.timeline {
  display: flex;
  justify-content: space-evenly; /* Gleichmäßige Verteilung der Items */
  align-items: center;
  border-bottom: 6px solid #a3080d;
  padding: 52px 0;
  position: relative;
  width: 100vw;
  
}

.timeline-item {
  position: relative;
  width: 16%; /* Breite der Timeline-Items */

}

.timeline-item .content {
  background-color: white;
  padding: 10px;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  top: 50%; /* Vertikale Zentrierung */
  transform: translateX(-50%);
  width: 7.4vw;
  height: 89.5px;
  background-color: #a3080d;
  text-align: center;
  z-index: 2; /* Damit der Inhalt immer über der Linie liegt */
  color: #f7b5b6;
  align-items: center;
  justify-content: center;
  

}

.timeline-item .content:hover{
background-color: #750407;
color: #ff8a8d;
}


/* Verbesserung der Positionierung der Items */
.timeline-item:nth-child(odd) .content {
  top: -60px; /* Position der ungeraden Items nach oben verschoben */
}

.timeline-item:nth-child(even) .content {
  top: 60px; /* Position der geraden Items nach unten verschoben */
}




/*Youtuber... */

.tile_container,
.tuto_container,
.galery_container{
    display: flex;
    justify-content: space-around; /* Abstand zwischen den Kacheln */
    align-items: center; /* Vertikale Ausrichtung */
    flex-wrap: wrap; /* Zeilenumbruch erlauben bei kleinen Bildschirmen */
    gap: 20px; /* Abstand zwischen den Kacheln */
    padding: 20px;
}


.YT {
    background-color: #a3080d;
    color: #f7b5b6;
    width: 22%; /* Vier Kacheln nebeneinander */
    height: 70vh;
    border-radius: 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: transform 0.3s;
	position: relative;
	
}

.YT ul{
	list-style: none;
	top: 40px;
	position: absolute;
	padding: 20px;
}



#tuto_list{
	background-color: #a3080d;
    color: #f7b5b6;
    width: 40%;
    height: 62.3vh;
    border-radius: 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: transform 0.3s;
	position: relative;
}
	
	
#tuto_video{
	background-color: #a3080d;
    color: #f7b5b6;
    width: 55%;
    height: 62.3vh;
    border-radius: 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: transform 0.3s;
	position: relative;
}



#tutorial-video{
	border:0;
	width: 100%;
	height: 100%;
    top: 0;
    left: 0;
	border-radius: 12px;

}


.img{
	background-color: #a3080d;
    color: #f7b5b6;
    width: 48%;
    height: 62.3vh;
    border-radius: 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: transform 0.3s;
	position: relative;
}

img{
	width: 100%;
	border-radius: 12px;
}


section:hover {
    transform: scale(1.05);
}





table{
	border-collapse: collapse;
	width: 70%;
}

th, td{
	border: 2px solid #f7b5b6;
	text-align: center;
	padding: 10px;

}