            @font-face {
                font-family: Silkscreen;
                src: url('/fonts/Silkscreen-Regular.ttf');
            }

            @font-face {
                font-family: Silkscreen;
                src: url('/fonts/Silkscreen-Bold.ttf');
                font-weight: bold;
            }
            
            body {
                font-family: 'Silkscreen', sans-serif;
                margin: 10;
                background-color: #FFFFFF;
                color: #000000;
                cursor: url('/cursors/Yellow-Eye-Shadow.cur'), pointer;
            }
            
            footer {
                background-color: #D2D3DB;
                width: 100%;
                height: 50px;
                padding: 15px;
                text-align: center;
            }
            
            h1,
            h2,
            h3 {
                color: #000000;
            }
            
            h1 {
                font-size: 25px;
            }
            
            strong {
                /* this styles bold text */
                color: #000000;
            }
            
            hr {
              height: 2px;
              background-color: #D39A22;
              border: none;
            }
            
              /* Unvisted Hyperlink */
              a:link {
                color: #D39A22;
              }
              
              /* Visted Hyperlink  */
              a:visited {
                color: #000;
              }
              
              /* Hover Over Hyperlink */
              a:hover {
                color: #D39A22;
              }
              
              /* Selected Hyperlink */
              a:active {
                color: #D39A22;
              }