<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-links li {
    display: inline;
}
.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}
.active {
    text-decoration: underline;
}
.container {
    padding: 80px 20px;
}
.advertisers {
    background-color: black;
    color: white;
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
}
.content {
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #444;
}
.footer {
    margin-top: 40px;
    padding: 20px;
    font-size: 14px;
    color: gray;
    border-top: 1px solid #ddd;
}
.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 5px;
    width: 400px;
}
input[type="text"] {
    border: none;
    outline: none;
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border-radius: 20px;
}
button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
</pre></body></html>