<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: 'Courier New', monospace;
    background-color: #555876;
    color: #000;
    margin: 0;
    padding: 40px;
    text-align: center;
    line-height: 1.75;
}

header {
    background-color: #e7a35b;
    color: #db4260;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

h1 {
    font-size: 2.5em;
    margin: 0;
    letter-spacing: 2px;
}

main {
    margin: 40px auto;
    max-width: 800px;
}

section {
    background-color: #e3d8c5;
    border: 0;
    margin: 20px 0;
    padding: 30px;
    text-align: left;
    box-shadow: none;
    position: relative;
}

section::before {
    content: "===============================================================================================\=";
    white-space: pre;
    color: #000;
    font-size: 0.8em;
}

h2 {
    font-size: 1.75em;
    margin: 0 0 15px;
    text-transform: uppercase;
}

textarea {
    width: 100%;
    height: 200px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: 3px solid #555876;
    background-color: #F3EFE7;
    color: #000;
    font-family: 'Courier New', monospace;
}

footer {
    background-color: #3B3D52;
    color: #e7a35b;
    padding: 20px;
    border: 5px solid #3B3D52;
    text-align: center;
    text-transform: uppercase;
}

a:link,
a:visited {
    color: #F3EFE7;
    background-color: #555876;
    text-decoration: none;
    padding: 4px;
    margin: 2px;
    text-align: center;
}

a:hover,
a:active {
    font-weight: bold;
}

.ascii-border {
    position: relative;
    padding: 20px;
    margin: 20px 0;
    background-color: #eaaf71;
    overflow: hidden;
    border: none;
}

.ascii-border::before,
.ascii-border::after {
    content: "/////////////////";
    position: absolute;
    left: 0;
    right: 0;
    color: black;
    font-family: 'Courier New', monospace;
    text-align: center;
}

.ascii-border::before {
    top: 1px;
}

.ascii-border::after {
    bottom: 1px;
}

.ascii-border h2 {
    margin: 0;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    body {
        padding: 20px;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.2em;
    }

    section {
        padding: 20px;
    }

    section::before {
        content: "=======================\=";
        font-size: 0.8em;
    }

    textarea {
        height: 150px;
    }

    .ascii-border {
        padding: 28px;
    }

    .ascii-border::before {
        top: 5px;
    }

    .ascii-border::after {
        bottom: 5px;
    }
}
</pre></body></html>