
            :root {
                --body-bg-image: url('/images/pipboy3000size2.png');

            }
        

           @font-face {
                font-family: 'monofonto';
                src: url ('monofonto.otf') format ('opentype'); 
          }
          
            body {
                font-family: 'monofonto', monospace;
                margin: 0;
                display:flex;
                background-image: url('/images/pipboy3000size2.png');
                background-repeat: no-repeat;
                background-size:cover;
                background-color: black;
                background-position: 100% 8%;
              
            }

            * {
                box-sizing: border-box;
            }
div {
    background-color:transparent;
    position:absolute;
}
p {
    color:#ffb642;
}

ul {
    font-size:120%;
}
         
.link {
    color: #4d3a19;
    position:absolute;
    right:406px;
    font-size:200%;
}

.link:hover {
    color: #ffb642;
}

a:link {
  color: #4d3a19;
}

/* visited link */
a:visited {
  color: #4d3a19;
}

/* mouse over link */
a:hover {
  color: #ffb642;
  border-color:#ffb642;
}

a:active {
  color: #4d3a19;
}


/* Scrollbar styles */
::-webkit-scrollbar {
width: 6px;
}


::-webkit-scrollbar-thumb {
background: #4d3a19;  
border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
background: #ffb642;  
}

.stats {
    color:#ffb642;
    position:absolute;
    top:40px;
    font-size:170%;
}
.buttons {
    color:#b5893e;
    position:absolute;
    font-size:218%;
}

.buttons img {
    width:122px;
    height:auto;
    position:absolute;
    top:763px;
}

.updates {
    height:176px;
    width:326px;
    overflow:auto;
    border:2px solid;
    background-color:black;
    color:#ffb642;
    border-color:#2b271a;
    padding:2px;
    position:absolute;
    top:290px;
    right:1534px;
}

.updates hr {
    border-color:#ffb642;
    width:290px;
    margin-top:4px;
    margin-bottom:2px;
    height:2px;
}

.updates h3 {
    color:#ffb642;
    font-size:150%;
    letter-spacing:2px;
    text-align:center
}

.status {
    border: 3px solid;
    padding:2px 3px 2px 3px;
    color:#ffb642;
    position:absolute;
    top:618px;
    right:1120px;
    font-size:170%;
}

.navbar {
  font-family: 'monofonto', monospace;
  font-size:170%;
  background-color: transparent; 
  border: 3px solid transparent;
  padding:2px 3px 2px 3px;
  color: #ffb642;  
  cursor: pointer; 
  position:absolute;
  top:618px; 
}

.navbar:hover {
  border-color: #ffb642;
}

   #container {
                max-width: 950px;
                /* 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 */
            }
 /* what's this "order" stuff about??
    allow me to explain!
    if you're using both sidebars, the "order" value
    tells the CSS the order in which to display them.
    left sidebar is 1, content is 2, and right sidebar is 3! */

      



            /* BELOW THIS POINT IS MEDIA QUERY */

            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

            @media only screen and (max-width: 1280px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }

                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }