<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">    /* Allgemeines Layout */
        body {
            font-family: Arial, sans-serif;
  background: url('https://media.chat.sextingarea.net/media/images/landingpage/lp1/motiv_adult.jpg?version=2252');
  background-position: center; /* Bild zentrieren */
			 

            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            flex-direction: column;
        }

        /* Header */
        header {
            width: 100%;
            background-color: #000;
            color: white;
            padding: 15px 0;
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        header .logo img {
            width: 125px;
            height: auto;
            margin-top: 10px;
        }

        /* Navigation */
        nav ul {
            list-style: none;
            padding: 0;
            margin: 10px 0;
        }

        nav ul li {
            display: inline;
            margin-right: 20px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
        }

        /* Hauptbereich */
        main {
            background-color: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 550px;
            margin-top: 30px; /* Platz fÃ¼r den Header */
            box-sizing: border-box;
        }

        h1 {
            text-align: center;
            color: #333;
            font-size: 18px;
            margin-bottom: 20px;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        label {
            font-size: 14px;
            font-weight: bold;
            color: #555;
        }

        select,
        button {
            padding: 12px;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        select:focus,
        button:focus {
            border-color: #007bff;
        }

        button {
            background-color: #FF9900;
            color: black;
            font-weight: bold;
            cursor: pointer;
        }

        button:hover {
            background-color: #FF9922;
        }

        /* Footer */
        footer {
            width: 100%;
            background-color: #000;
            color: white;
            padding: 10px 0;
            text-align: center;
            font-size: 14px;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
        }

        /* Responsive Design */
        @media (max-width: 600px) {
            main {
                padding: 20px;
                width: 90%;
            }
            .logo img {
                width: 50px;
            }
        }

</pre></body></html>