package main import ( //"os" ) const css = ` body { background-color: #222; color: #aaa; font-size: 1rem; font-family: "Source Sans Pro", 'JetBrains Mono', 'Fira Code', "Segoe UI" } .main-title { color: teal; margin-top: 0; text-align: center; } .container { display: flex; margin-left: 8px; margin-right: 8px; justify-content: space-between; } .server { color: darkcyan; cursor: pointer; } .server:hover { text-decoration: underline; color: cyan; } `