<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General styles */
body {
    font-family: "Verdana", sans-serif;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 20px auto;
    padding: 40px;
    text-align: center;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo img {
    width: 180px;
    height: auto;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    background-color: #36d1dc;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.main-nav ul li a:hover {
    background-color: #5b86e5;
}

/* Main section */
main h1 {
    font-size: 28px;
    color: #ff6f61;
    margin-bottom: 20px;
}

main p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

/* Textarea and buttons */
textarea {
    width: 80%;
    height: 200px;
    padding: 10px;
    font-family: "Courier New", monospace;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid #36d1dc;
    margin-bottom: 20px;
}

.actions {
    margin-bottom: 30px;
}

button {
    background-color: #36d1dc;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5b86e5;
}

/* Preview iframe */
.preview {
    width: 80%;
    height: 400px;
    border: 2px solid #36d1dc;
    border-radius: 8px;
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 14px;
    color: #666;
}

footer a {
    text-decoration: none;
    color: #36d1dc;
}

footer a:hover {
    color: #5b86e5;
}
</pre></body></html>