/* Custom font */
@font-face {
  font-family: typostuck;
  src: url(assets/typostuck.woff);
}
body {
  background-color: #1f1f1f;
  margin: 20px;
}
/* Trollian window */
#trollian {
  margin: auto;
  border: 5px solid #c20f00;
  font-family: typostuck;
  letter-spacing: 1.5px;
  border-radius: 20px 20px 10px 10px;
  max-width: 1000px;
  background-color: #4d4d4d;
  position: relative;
}
/* Trollian header and logo */
#trollian header {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 100px;
  background-image: url(assets/trollianheader.png);
  background-size: cover;
}
/* Open and closing buttons */
.menubar {
  background-color: #c2c2c2;
  padding: 5px;
  top: 0;
}
.btncontainer {
  position: absolute;
  right: 5px;
}
.btncontainer button {
  color: #c2c2c2;
  background-color: #00000000;
}
/* For the 2 column layout */
#content {
  height: 600px;
  display: grid;
  grid-template-columns: 75% 25%;
}
/* Left column */
#windowtainer {
  overflow: auto;
  padding: 15px;
  border-right: 5px solid #c20f00;
}
/* Left column content */
.window {
  scrollbar-color:#e02413 #cecece;
  scrollbar-width: 50px;
  background-color: #ff5f84;
  margin: 10px;
  margin-top: 45px;
  margin-bottom: 60px;
  min-height: 100px;
  border-image: url(assets/windowborder.png);
  border-image-slice: 20 4 5 3;
  border-image-width: 35px 3px 6px 3px;
  border-image-outset: 35px 3px 6px 3px;
  border-image-repeat: stretch stretch; 
}
/* Message box */
.input {
  margin-top: 5px;
  min-height: 30px;
  padding: 5px;
  background-color: #c2c2c2;
  border-radius: 5px;
}
#trollian input {
  font-family: typostuck;
  letter-spacing: 1.5px;
  width: 90%;
  height: 29px;
  border: none;
}
/* Styling for trollian boxes */
#trollian h2 {
  position: relative;
  border-radius: 10px;
  color: #ffffff;
  margin: 5px;
  border: 2px solid #c2c2c2;
  background-color: #ff2612;
  padding-left: 20px;
}
#trollian p {
  color: #000000;
}
#trollian button {
  font-family: typostuck;
  letter-spacing: 1.5px;
  font-weight: bold;
  cursor: pointer;
  font-size: 20px;
  background-color: #00000000;
  border: none;
  width: 20px;
}
#trollian button:hover {
  background-color: #00000020;
}
/* Right column */
#chumproll {
  background-color: #ff5f84;
  border: 2px solid #c2c2c2;
  border-top: none;
  border-bottom: none;
}
/* Pesterlogs */
.loglist {
  overflow: auto;
  border-radius: 10px;
  padding: 10px;
  margin: 5px;
  border: 2px solid #c2c2c2;
  background-color: #ffffff;
}
/* Chumproll */
#chumproll .loglist {
  height: 525px;
}
/*Responsive stuffs..*/
@media (max-width: 950px) {
  #content {
    display: block;
    height: auto;
  }
  #windowtainer {
    padding: 0px;
    border-right: none;
    border-bottom: 5px solid #c20f00;
  }
  #chumproll {
    border-top: 2px solid #c2c2c2;
    border-bottom: 2px solid #c2c2c2;
  }
}

@media (max-width: 550px){
  header {
    height: 50px;
  }
  h2, button {
    font-size: medium;
  }
}