body {
	/* Hintergrundbild und -eigenschaften */
	background-image: url('Ocean_Monument.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	/* Allgemeine Formatierung und Abstände */
	padding: 0;
	margin: 0;
	height: 100vh;
}

h1{
	font-size: 50px;
}
/* Twitch- und Discord-Icons */
#twitch{
	position: relative;
	max-width: 180px;
	height: auto;
	
}
#Discord{
	width: 40px;
	height: auto;
	border-radius: 50%;
}
.fadeout{
	width: 130px;
	height: auto;
	border-radius: 50%;
}
/* Stil für die Kreise */
.kreis {
    width: 130px;
	height: 130px;
    border-radius: 50%;
    transition: transform 1.5s, opacity 1.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}
/* Positionierung der einzelnen Kreise */
.containerkreise{
	position: relative;
	height: 50%;
	width: 100%;
	justify-content: center;
	display: flex;
}
.kreis1 {
	top: 25%;
}
.kreis2 {
	top: 65%;
	left: 20%;
}
.kreis3 {
	top: 65%;
	right: 20%;
}
/* Stil für den Inhalt innerhalb der Kreise */
.inhaltkreis {
	color: white;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	opacity: 0;
	font-size: 7px;
}
/* Animationseffekte beim Hover über die Kreise */
.kreis:hover {
    transform: scale(3); /* Vergrößern des Kreises */
	z-index: 10; /* Überlagerungsebene erhöhen */
	background-color: blue;
}
/* Anzeige des Inhalts beim Hover über die Kreise */
.kreis:hover .inhaltkreis {
	opacity: 1; /* Anzeigen des Inhalts */
}
.kreis:hover .fadeout{
	opacity: 0;
}
/* Header-Stil */
.header {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start; /* Inhalte links ausrichten */
    gap: 30px;
    padding: 10px;
	min-width: 300px;
}
/* Stil für Header-Elemente */
.head{
	position: relative;
	width: 40%;
	min-width: 60px;
}
/* Stil für die Navigationsleiste */
.navbar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
	min-width: 600px;
}
/* Stil für Dropdown-Schaltflächen */
.dropdownbutton{
	background-color: black;
	color: white;
	min-width: 120px;
	width: 100%;
	border: none;
	font-size: 20px;
}
/* Stil für Dropdown-Menüs */
.dropdown{
	position: relative;
	width: 33%;
	min-width: 120px;
	font-size: 20px;
}
/* Stil für Dropdown-Inhalte */
.dropdowninhalt{
	display: none;
	position: absolute;
	min-width: 120px;
	width: 100%;
	z-index: 1;
	font-size: 20px;
}
/* Stil für Links im Dropdown-Menü */
.dropdowninhalt a{
	display: block;
	padding: 12px 16px;
	text-decoration: none;
	color: white;
	background-color: darkblue;
	opacity: 0.8;
}
/* Stil für Links im Dropdown-Menü beim Hover */
.dropdowninhalt a:hover {background-color: purple;}
/* Anzeigen des Dropdown-Inhalts beim Hover über die Dropdown-Schaltfläche */
.dropdown:hover .dropdowninhalt {display: block;}
/* Änderung der Hintergrundfarbe der Dropdown-Schaltfläche beim Hover */
.dropdown:hover .dropdownbutton {background-color: purple;}