html, body {
    font-family: Arial, sans-serif;
    background-image: url('/images/space.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    min-height: 100vh; /* Höhe des Viewports, damit Scrollen möglich ist */
}
.container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	allign-items: center;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	text-align: center;
	min-height: 100vh
	max-width: 50%;
	margin-bottom: 20px;
}
h1 {
	font-size: 1.5rem;
    	color: #fff;
    	margin-bottom: 20px;
    	transition: color 0.5s ease, background 0.5s ease;
    	background: linear-gradient(90deg, #85C1E9, #D7BDE2);
    	background-clip: text;
    	-webkit-background-clip: text;
    	color: transparent;
	}
.button {
            display: inline-block;
	max-width: fit-content;
            padding: 15px 30px;
            margin: 10px;
            font-size: 1.2rem;
            color: #fff;
            background-color: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .button:hover {
            background-color: rgba(255, 255, 255, 0.3);
            border-color: #fff;
            color: #000;
        }
        .footer {
            background-color: rgba(0, 0, 0, 0.8);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
            max-width: 500px;
            width: 100%;
        }
