@font-face {
  font-family: 'Mona';
  src: url(https://nonexistentfandomsfandom.neocities.org/mona.woff)
  }

/*@font-face {
  font-family: 'Courier New';
  src: url(https://nonexistentfandomsfandom.neocities.org/courierNew.woff)
  }
*/

body {
  font-family: 'Times New Roman', serif;
  font-size: 15px;
  /*background: #031200 url("/backgrounds/quad.png") fixed; /*Replace with your own background*/
  background: #FFFFEE url("/backgrounds/hybrid.jpg") fixed; /*Replace with your own background*/
	color: black
	}
	
code {
  font-family: 'Courier New', 'Courier', monospace;
  }
  
/*	
a {
  color: #91F72C;
  }
*/

.cnew {
  font-family: 'Courier New', 'Courier', monospace;
}

/*Main text section*/
.main { 
  /*The border radius thing is what gave it rounded corners.*/
  /*border-radius: 5px;*/
  background: white;
  border: 2px solid black;
  width: 500px;
  padding:15px;
  margin: 20px 25px 25px 400px;
  /*The 7px is vertical and horizontal offset for the shadow, if you want to change it.*/
  box-shadow: 7px 7px rgb(0, 0, 0, 0.78);
  }
  
/*Prevent overflow of large images*/
.main img, .pain img, .sidebar-left img {
  max-width: 100%;
  height: auto;
  }
  
/*Identical to Main, but transparent*/
.pain { 
  width: 515px;
  padding:15px;
  margin: 20px 25px 25px 400px;
  }
  
/*Sidebar*/
.sidebar-left {
  background: white;
  border: 2px solid black;
  width: 250px;
  margin-left:75px;
  padding:15px;
  margin-top:-25px;
  min-height:100%;
  position:fixed;
  overflow:auto;
  text-align:center;
  /*The 7px is vertical and horizontal offset for the shadow, if you want to change it.*/
  box-shadow: 7px 7px rgb(0, 0, 0, 0.78);
  }
  
/*Use with <ul> to create a button section in the sidebar.*/
.buttons {
  list-style-type:none;
  padding:3px;
  }
  
/*Use with <li> for individual buttons.*/
.button { 
  text-align:center;
  /*border-radius: 5px;*/
  border: 2px solid black;
  padding: 10px;
  margin:5px;
  margin-top:10px;
  margin-bottom:10px;
  background: white;
  color: white;
  font-family: 'Courier New', 'Courier', monospace;
  }
  
.sideimage { /*optional*/
  right: 30px;
  bottom:-20px;
  float: right;
  position: fixed;
  max-width: 450px;
  }
  
.sideimage img {
  max-width: 100%;
  height: auto;  
  }
  
.footer {
  text-align: right;
  margin-left: 475px;
  width: 500px;
  font-size: 13px;
  font-style: italic;
  margin-top: 20px;
  margin-bottom: 40px;
  }
  
/* blockquote code */

blockquote {
	padding:10px;
	border-left:10px solid #FF954E;
	background: #FFBC63;
}

blockquote cite {
	font-size:11pt;
	position:relative;
	right:0;
}

/* table code */

/*
table {
	margin:10px auto 10px auto;
	padding:5px;
	width:100%;
	border-collapse:collapse;
}

th {
	border-bottom:1px solid #FF954E;
	padding:5px;
text-align:left;
}

td {
	padding:3px;
}

tr:nth-child(2n) {
	background: #FFBC63;
}
*/
  
/* the logs. this was mosty a failed experiment at pesterchum-style chatlogs in neocities. code stolen from here: https://codepen.io/magpierrot/pen/abYJgja*/
  
.chatlog{
  border:3px solid #c38b00;
  margin-left:10px;
  margin-right:10px;
  margin-bottom:7px;
  padding-top:5px;
  padding-left:3px;
  padding-right:3px;
  padding-bottom:5px;
  word-wrap: break-word;
  background-color:white;
}

.log {
  border:3px solid #fff700;
  margin-top:409px;
  margin-left:20px;
  position: absolute;
  height:152px;
  width:540px;
  background-color:#ffb300;
}

.logtitle{
  text-align:center;
  padding:5px;
  color:white;
  background-color:#c38b00;
}

.logsub{
  margin-top:2px;
  margin-left:20px;
  margin-bottom:2px;
}

.logtext {
  border:3px solid #c38b00;
  margin-left:10px;
  margin-right:10px;
  margin-bottom:7px;
  padding-top:5px;
  padding-left:3px;
  padding-right:3px;
  padding-bottom:5px;
  height:78px;
  overflow-y:scroll;
  background-color:white;
}

.logtext2{
  border:3px solid #c38b00;
  margin-left:10px;
  margin-right:10px;
  margin-bottom:7px;
  padding-top:5px;
  padding-left:3px;
  padding-right:3px;
  padding-bottom:5px;
  height:100px;
  overflow-y:scroll;
  background-color:white;
}

.log2{
  border:3px solid #fff700;
  margin-top:585px;
  margin-left:20px;
  position: absolute;
  height:174px;
  width:540px;
  background-color:#ffb300;
}
  
/* you have reached the end of the logs. goddamn it. */
  
@media(max-width: 1440px) {
    .sideimage {
      max-width: 0%;
      /*if this can be executed, override the previous rule, otherwise hide the side image*/
      max-width: calc(100% - 975px);
      }
  }
  
@media(max-width: 1200px) {
    .sidebar-left {
      margin-left: 25px;
      }
    
    .main {
      margin-left: 350px;
      }
  
    .sideimage {
      right: 5px;
      max-width: 0%;
      /*if this can be executed, override the previous rule, otherwise hide the side image*/
      max-width: calc(100% - 900px);
      }
  }
  
@media(max-width: 1000px) {
  
    .sidebar-left {
      margin-left: 5px;
      }
    
    .main {
      margin-left: 330px;
      }
  
    .sideimage {
      /*don't even bother at this point*/
      display: none;
      }
  }

  
/*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;
    }
    
  .footer {
    width: 80%;
    padding: 5%;
    margin: 0 auto;
    }
    
  .sideimage {
    /*don't even bother*/
    display: none;
    }
  }