
#header {
      width: 100%;
      position: relative;
    /* header color here! */
      height: 230px;
      /* this is only for a background image! */
      /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */;
      background-size: 100%;

      border: 4px black; /* outer border */
      box-shadow: 0 0 0 6px #fdf6e3;
            }

.header-img {
  background-color: black; /* black background */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


.header-text {
  position: absolute;
  top: calc(50% - 10px);
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-family: "DotGothic16", sans-serif; 
  color: #7eccc4;
  text-shadow: 3px 3px 0px white;
  margin: 0;
}


.content {
  padding: 1.0rem;
  font-size: 1.5rem;
}
.spacer-box{
  background-color: #fdf6e3;
  padding: 10px;
  margin: 0 auto;
  max-width: 800px;
}

.pfp {
  float: left;
  width: 200px;

}

.pfp img {
  width: 100%;
  height: auto;
  display: block;
}

.inbox-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8px;
}

            #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 */
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: #ED64F5;
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }



            /* navigation section!! */
            #navbar {
                height: 50px;
                background-color: black;
                width: 100%;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 15px;
            }

            /* navigation links*/
            #navbar li a {
              color: #7eccc4;
              font-family: "Workbench", sans-serif !important;
              font-weight: 400;
              font-style: normal;
              text-decoration: none;
              display: inline-block;
              transition: color 0.3s ease;
              font-size: 1.5rem;
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #fff;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                /*background-color: #241445;*/
                width: 400px;
                padding: 0;
                font-size: smaller; /*might need to magic number this so stuff is readable*/
                /* this makes the sidebar text slightly smaller */
            }
          .sidebar-pics{
              width: 100%;
              height: auto;
              display: block;
              border-radius: 10px; /* optional */
              margin-bottom: 10px; /* optional */
          }

            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: black;
                flex: 1;
                padding: 20px;
                order: 2;
            }

            /* 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! */

             #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #13092D;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }

            h1,
            h2,
            h3 {
                color: #7eccc4;
            }

            h1 {
                color: #7eccc4;
                  font-style: normal;;
            }
            h2 {
              font-family: "Workbench", sans-serif !important;
              font-weight: 400;
              font-style: normal;
              text-decoration: none;
            }

            strong {
                /* this styles bold text */
                color: #7eccc4;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: black;
                padding: 10px;
                border-radius: 15px;
                border-style: solid;
                border-width: 20px; /* Match this to border-image-width */
                border-image: url(https://64.media.tumblr.com/eb81881bc339e9fa6df44e781188e435/47004bdc9ce33ca6-fb/s75x75_c1/96ed1b3f190fdfab08f34cb884dd878df49f011d.gifv) 60 / 20px round;

            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }


            /* 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: 800px) {
                #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;
                }
            }
