body {
    background-image: url(https://maya.land/assets/stardown.gif);
    color: rgb(255, 255, 255);
    font-size: 0.875em;
    font-family: monospace;
    padding: 0;
    margin: 0;
    }

center {
  text-align: center;
}

.wrapper { /*Contains everything*/
  width: 880px;
  background: none;
  margin: 0 auto;
  top: 0;
  margin-top: -10px;
  border-left: 0px solid #12282f;
  border-right: 0px solid #12282f;  
  margin-bottom: -10px;
  } 

.wrapper-2 { /*Contains main and sidebar divs*/
  position: relative;
}
  .sidebar-left, .main, .sidebar-right { /*These three classes are just for defining the boundaries and size of the main and sidebar columns. Most fancy styling goes in the 'box' class.*/
    display:inline-block;
  }
  .sidebar-left, .sidebar-right {
    width: 175px;
    position: absolute;
  }
  .main {
    width: 500px;
    margin-left: 190px;
  }
  .sidebar-left {
    margin-left: 0px;
  }
  .sidebar-right {
    margin-right: 10px;
    margin-left: 10px;
  }
.sidebar-left .box {
  max-height: 300px !important;
  overflow-y: scroll;
}

.header, .footer { /*Header and footer images*/
  height: 200px;
  overflow: hidden;
  background: linear-gradient(rgb(0,0,0,0.1),rgb(0,0,0,0.1)), url("/img/river.gif"); /*This is the image in the header and footer. Replace it with your own!*/
  background-size:cover;
  }
  .header {
    text-align: center;
    margin-top: 15px;
    top: 0;
    height: auto;
    font-family: 'Courier New', Courier, monospace;
  }  
  .header img {
    border-top: 0px;
  }
  .footer {
    height: 0;
  }


.links { /*Container for top row of links.*/
  padding: 5px;
  padding-top: 3px;
  padding-bottom: 5px;
  margin-top: 1em;
}
  .link { /*Div style for individual links.*/
    text-align: center;
    display: inline-block;
    list-style-type: none;
    float: none;
    font-weight: bold;
    font-size: 1.16em;
    padding: 5px;
    margin-right: 10px;
    margin-left: 10px;
    border: 0px solid red;
    }
    .link a {
      color: white;
      text-decoration: none;
    }
    .link a:hover {
    background-color: white;
    color: black;
    }

.box {
  border: 3px double #fff;
  background: #000000;
  padding: 0;
  margin-top: 10px;
} 
  .box h1, .box h2, .box h3, .box h4 {
    background: #000000;
    margin: 0;
    padding: 0.35em 0.25em 0.3em 0.25em;
    text-align: center;
    border-bottom: 3px double #ffffff;
  }
  .inner {
    padding: 0.25em 1em 0.3em 1em;
    font-size: 1.075em;
  }
  #buttons {
    text-align: center;
  }

.title { /*suppress title, since we're putting the title as text in the header box*/
  display: none;
}

    
