<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 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." */

      @font-face {
        font-family: "Space Mono";
        src: url("/fonts/SpaceMono_BoldItalic.ttf");
        }

      body {
        background-image: url("rambutopiabg.png");
        background-size: 800px 800px;
        background-repeat: repeat;
  
        }
      
      .header {
        padding-bottom: 15px;
        padding-top: -25px;
        background-color: #e1761a;
      
      }
      
      .boxed::after {
        content: '#';
        position: absolute;
        top: -13px;
        font-weight: bold;
        font-size: 38px;
        color: white;
        
      }
      
      
      .fix-stroke {
      paint-order: stroke fill;
      }
      
      h1 {
      font-family: "Space Mono";
      font-weight: bold;
/*      paint-order: stroke fill; */
      font-size: 120px;
      padding-left:200px;
      color: black;
      -webkit-text-fill-color: white; /* Will override color (regardless of order) */
/*      -webkit-text-stroke-width: 50px; */
      -webkit-text-stroke-color: #1a1a1a;
      
      }
</pre></body></html>