body {
  margin: 0;
  background-color: black;
  background-image: url("nurple-static-bright.gif");
  background-repeat: repeat;
  color: white;
  }
  
/*Everything goes inside here.*/
.wrapper {
  width: 900px;
  margin: 0 auto;
  }
  
.sidebar-img, .footer, .title, .links, .box {
  background-color: #0f0f0f;
  margin-top: 25px;
  }
  
.title, .links, .footer {
  text-align: center;
  }
  
/*Navigation links.*/
.links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  }
  
.links li {
  display: inline-block;
  }

/*add special characters around the navigation links*/
.links li:before {
  content: "  ";
  }
  
.links li:after {
  content: "  ";
  }
  
.links .last:after {
  content: "  ";
  }
  
.links li:before, .links li:after {
  letter-spacing: 0.1em;
  }
  
/*Basic box code that is used for all content boxes on the page.*/
.box {
  border: 1px solid white;
  padding: 0.5em 1em;
  
  }
  
/*Goes inside the box class. Not given any style by default, but can be used for stuff like fancy borders.*/
.inner {
  
  }
  
/*Prevent image overflow.*/
.box img, .sidebar img {
  max-width: 100%;
  height: auto;
  }
  
/*Wrapper for the sidebar.*/
.sidebar {
  position: fixed;
  width: 16%;
  float: left;
  }
  
/*Container for the sidebar image.*/
.sidebar-image {
  border: 1px solid white;
  }
  
/*Remove extra padding line at the bottom of the image.*/
.sidebar-image img {
  display: block;
  }
  
/*This is where the title, navbar, and main content all go.*/
.main-wrapper {
  margin-left: 25%;
  }
  
/*one column by default. The "double-column" class can be added to make it two columns.*/
.main {
  columns: 1;
  }
  
/*Make sure boxes don't spread over multiple columns.*/
.main .box {
  display: inline-block;
  width: 95%;
  }
  
.double-column {
  columns: 2;
  column-gap: 25px;
  }
  
.footer {
  margin-bottom: 25px;
  }
  
  
  
@media (orientation: portrait) {
  .wrapper {
    width: 100%;
    }
  
  .title, .links, .main-wrapper, .sidebar, .footer {
    margin: 0 auto;
    width: 90%;
    }
    
    .main .box {
  width: 85%;
  }
  
  .sidebar {
    position: relative;
    top: 3px;
    float: none;
    display: block;
    }

  .sidebar-image {
    margin: 0 auto;
    width: 33%;
    margin-top:25px;
    }

  .sidebar .sidebar-image img {
    width: 100%;
    }
    
  .footer {
    margin-bottom: 25px;
    }
  
  }

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 25px 0;
}

td {
  padding: 10px 0;
}

