:root {
                --header-image: url('https://sadhost.neocities.org/images/layouts/wp.jpeg');

                /* colors */
                --content: #43256E;
            }
            
            body {
              background: #eab486;
              background-image: url('https://64.media.tumblr.com/892f70149fb87970fa773971d5d7f957/4292f04065bfbf02-70/s75x75_c1/0aa253abba41050646138bc610ff865fab3b2ab3.gifv');
              color: black;
              font-family: Verdana;
            }

            * {
                box-sizing: border-box;
            }

            #container {
                max-width: 900px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
                /* this centers the entire page */
                height: auto;
            }

            #container a {
                color: #ffb938;
                font-weight: bold;
            }

            #header {
                width: 100%;
                background-color: #f79ca1;
                height: 200px;
                padding: 10px;
                text-align: center;
                background-image: url('/ROMULUS_BK_HEADER.png');
                background-position: calc(50% + 5px) calc(50% + 5px); /* 10px right, 30px up from center */
                background-repeat: no-repeat;
            }
                
            @font-face {
                font-family: blacklettersh;
                src: url('/Blacklettersh.ttf') format('truetype');
            }
            
            #fuck {
                text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
                font-family: blacklettersh;
                font-size:455%;
                font-weight:none;
                color: #198664;
                text-align:center;
                -webkit-animation: pop 1s ease-in-out infinite alternate;
                animation: pop 1s ease-in-out infinite alternate;
                -moz-animation: pop 1s ease-in-out infinite alternate;
            }

            @keyframes pop {
              from {
                transform:scale(0.95)
            }

            50% {
                transform:scale(1)
            }

            to {
                transform:scale(0.95)
            }
            }

            @-webkit-keyframes pop {
              from {
              -webkit-transform:scale(0.95)
            }

          50% {
              -webkit-transform:scale(1)
            }

              to {
              -webkit-transform:scale(0.95)
            }
            }

            #flex {
                display: flex;
            }

            aside {
                background-color: #ffdac9;
                width: 200px;
                padding: 20px;
                font-size: smaller;
            }

            main {
                background-color: #ffdac9;
                flex: 1;
                padding: 20px;
                order: 2;
            }

            #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #ffa2d4;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }

            h1,
            h2,
            h3 {
                color: #ED64F5;
            }

            h1 {
                font-size: 25px;
            }

            strong {
                /* this styles bold text */
                color: #ED64F5;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #f7f9c4;
                border: 1px solid #faa032;
                padding: 10px;
            }


            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }

            @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }
             
                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            
        