<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Allgemeine Layout Einstellungen */
body {
    font-family: 'Arial', sans-serif;
    background-color: #1c1c1c;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Header Styling */
header {
    text-align: center;
    padding: 50px 20px;
    background-color: #000;
}

/* ASCII Logo Styling */
.cyber-logo {
    white-space: pre-wrap; 
    font-family: monospace;
    font-size: 12px; 
    line-height: 1.2;
    color: #00ffcc;
    text-align: center;
    margin-bottom: 20px;
    word-wrap: break-word; 
    overflow-wrap: break-word;
}

/* Futuristic Header Styling for Important Bookmarks */
.futuristic-header {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.3rem;
    color: #00ffcc;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin: 30px 0;
}

header p {
    color: #ccc;
    font-size: 1.2rem;
}

/* Container fÃ¼r den Inhalt */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Ãœberschriften */
h2 {
    color: #00ffcc;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

h3 {
    color: #00ffcc;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Bookmark Liste */
.bookmark-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Bookmark Items */
.bookmark-item {
    background-color: #2e2e2e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 255, 204, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bookmark-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 255, 204, 0.4);
}

.bookmark-item a {
    color: #00ffcc;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
}

.bookmark-item a:hover {
    text-decoration: underline;
}

/* Kontaktformular Styling */
.contact-form {
    padding: 3rem 1rem;
    text-align: center;
    margin-top: 40px;
    background-color: #1c1c1c;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 255, 204, 0.5);
}

.contact-form h2 {
    font-size: 2.5rem;
    color: #00ffcc;
    margin-bottom: 2rem;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #2e2e2e;
    padding: 2rem;
    border-radius: 10px;
}

.contact-form label {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #00ffcc;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: #1a1a1a;
    color: white;
    border: 1px solid #00ffcc;
}

.contact-form button {
    padding: 1rem;
    font-size: 1.2rem;
    background-color: #00ffcc;
    color: #000;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #00e6b8;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: #fff;
}

/* Media Queries fÃ¼r Tablets */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 1rem;
    }
}

/* Media Queries fÃ¼r Smartphones */
@media (max-width: 480px) {
    .contact-form h2 {
        font-size: 2rem;
    }

    .contact-form button {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.6rem;
    }
}</pre></body></html>