body {
    max-width: 650px;
    margin: 40px auto;
    padding: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 140%;
    background: #060606; /* Dunkler Hintergrund */
    color: white;
}

h1 {
	text-align: center;
	line-height: 0%;
	--glow-color: rgba(123, 121, 121, 0.18);
	--glow-spread-color: rgba(117, 114, 114, 0);
	--enhanced-glow-color: rgb(215, 200, 230);
	--btn-color: rgb(198, 27, 27);
	border: .25em solid rgb(131, 7, 7);
	padding: 1em 3em;
	color: rgb(190, 13, 13);
	font-size: 24px;
	font-weight: bold;
	border-radius: 1em;
	outline: none;
	box-shadow: 0 0 1em .25em rgba(21, 21, 21, 0.09), 0 0 4em 1em rgba(96, 89, 89, 0.78), inset 0 0 .75em .25em rgba(9, 8, 8, 0.15);
	text-shadow: 0 0 .5em rgba(217, 10, 10, 0);
	position: relative;
	transition: all 0.3s;
	cursor: pointer;
	background: linear-gradient(0deg, rgba(11,11,11,1) 3%, rgb(50, 47, 47) 50%, rgba(9,9,9,1) 98%);
}

h2 {
	color: #e70505;
	margin: 0;
	font-size: 20px;
}
h6 {
	color:grey;
	text-align: center;
}

a {
    color: #ff0000;
    text-decoration: none;
}

a:hover {
    color: green;
}

p {
	margin: 5px 0;
}

/* User-Container (enthält 3 User) */
.user-container {
	border: 2px solid #9d0f0f;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 20px;
	background-color: #1c1c1c;
	text-align: center;
}

/* Einzelner User */
.user {
    margin-bottom: 20px;
}

.user:last-child {
    margin-bottom: 0; /* Kein Abstand nach dem letzten User */
}

/* User-Inhalt (Bild und Details nebeneinander) */
.user-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	background: linear-gradient(0deg, rgba(11,11,11,1) 3%, rgb(50, 47, 47) 50%, rgba(9,9,9,1) 98%);
	height: 130px;
}

.user-image {
    width: 100px;
    height: 100px;
    border: 2px solid red;
    border-radius: 10px;
}

/* User-Details (rechts neben dem Bild) */
.user-details {
    flex: 1;
    max-width: 200px; /* Begrenzt die Breite der Details */
}

/* Trennlinie zwischen den Usern */
.user-divider {
    border: 1px solid #555;
    margin: 20px 0;
}

/* Button */
.button {
	display: inline-block;
	padding: 8px 16px;
	background-color: #9d0c0c;
	color: white;
	border-radius: 5px;
	transition: background-color 0.3s ease;
	border: 1px solid #df0808;
	font-size: 14px;
}

.button:hover {
    background-color: red;
}
.green-button {
	background-color: #18E120;
	color: white;
	border: none;
	padding: 0.7rem 1.5rem;
	font-size: 1rem;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	display: block;
	margin-left: 270px;
}

.green-button:hover {
    background-color: #45a049;
}

.linkbox {
    margin-top: 1rem;
}

.red-link {
    color: red;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.6;
}