/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  background-image: url("https://l-chan.neocities.org/skullbg-green.gif"); 
	color: #101000
	}
	
a {
  color: #0d8500;
  }

/*Main text section*/
.main { 
  border-radius: 5px;
  background: #fefefe;
  border: 1px solid #0d8500;
  width: 500px;
  padding:15px;
  margin: 20px 25px 25px 400px;
  color: #000000;
  }
  
/*Prevent overflow of large images*/
.main img, .sidebar-left img {
  max-width: 100%;
  height: auto;
  }
  
/*Sidebar*/
.sidebar-left {
  background: #fefefe;
  border: 1px solid #0d8500;
  width: 250px;
  margin-left:75px;
  padding:15px;
  margin-top:-25px;
  height:100%;
  position:fixed;
  overflow:auto;
  text-align:center;
  }
  
/*Tentative mobile support.*/
@media(orientation:portrait) {
  .sidebar-left {
    min-height:0px;
    width: 100%;
    margin: 0 auto;
    top:0;
    left: 0;
    padding: 0;
    font-size: 0.9em;
    position: relative;
    border-radius: 5px;
    }
    
  .main {
    width: 90%;
    margin: 0 auto;
    margin-top: 1em;
    }
  }