/* My thoughts on CSS
I'm not a fan of styling websites. I think it's kinda complex and weird.
I like the idea of just raw HTML and leaving styling up to the user's browser. Not sure how good an idea that is, but it's my little philosophy, if you can call it that.
*/

/* Neocities Explanation on CSS
CSS is how you can add style to your website, such as colors, fonts, and positioning of your
HTML content. To learn how to do something, just try searching Google for questions like
"how to change link color."
*/

/* Default Neocities CSS style
body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
*/