doshan wrote:...
CALLING ALL WEB DEVS!!!!!
I know just enough about html and css to see that there is something fishy going on in this stylesheet.
...
IT Engineer here--the Cosecha HTML document is not actually referencing any CSS stylesheet. The CSS you're looking at is a default CSS artifact added because you're using Firefox to browse the site. It's part of Firefox's Gecko Engine--here's the exact file in their GitHub repo:
https://github.com/mozilla/gecko-dev/blob/e51daa6f33122c66c59a9dc8080807ba1c003131/layout/style/res/plaintext.css#L26. If you use another browser (Chrome), you'll notice this same CSS is not imported.
Since the page also is not running any server-side Javascript (no <script> tags within the HTML), you cannot have any impact on the site by using the Developer Console in your browser, in the ways that you may be implying. There's nothing you can inject or actually manipulate from your end to produce a different response from the server.
It's also common to use CloudFlare to redirect any sub-path(s) on a domain back to the root domain, returning an HTTP200 success code, especially for small static "landing-sites" like this. Part of the reason can be preventing people from trying to discover unintentionally-unprotected services behind a domain (why something like `https://cosecha-transmisiones.com/asdf/qwerty/hello-world` just redirects back).
Though it wasn't your comment, the "hexagonal IP address arrangement" is unfortunately erroneous as well. Running a nameserver lookup on the Cosecha site does return 7 IP addresses, which are indeed hosted behind CloudFlare. They're one of the world's biggest internet hosts, and you're receiving a DNS lookup response for the SF Bay Area's Silicon Valley, though that doesn't indicate a geographical intention on the part of the bros. The actual data center serving the site happens at a different routing layer than DNS, it will serve the site from a node closest to the person requesting it. Generally speaking, any reverse IP lookup tool showing GPS coordinates or physical addresses are going to be approximate at best. They spend a lot of money to obfuscate the actual locations of their data centers.