use tiny_http::{Header, Response};
pub fn serve_css() -> Response<std::io::Cursor<Vec<u8>>> {
let css = include_str!("../assets/basicss.css");
let response = Response::from_string(css)
.with_header(Header::from_bytes("Content-Type", "text/css").unwrap());
response
}