body {
  font-family: 'Courier New', Courier, monospace;
  /*font-family: 'Times New Roman', Times, serif;*/
  font-size: 14px;
}

@media (prefers-color-scheme: light) {
  body {
    margin: auto;
    background-color: #ffffff;
    /*
    background-blend-mode: color-burn;*/
    image-rendering: pixelated;
    
  }

  .newspaper {
    margin: auto;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 800px;
    height: 600px;
    overflow: auto;
    background-color: #f1edfd;
    border: solid;
    border-width: 16px;
    background-image: url("assets/gif/anim_slant_light.gif");
    background-attachment: fixed;
    animation: day 20s linear infinite, stret 20s ease-in-out infinite;
    border-image: linear-gradient(#ffffffd4, #06003f3f) 1;
  }

  .error {
    background-color: #ffffff; height: 200px;
    background-image: none;
    animation: none;
    border: none;
  }

  a {
    color: #105fff;
    cursor: pointer;
  }

  a:hover {
    color: #d60a33;
    font-weight: bold;
    text-shadow: #ff8b8b 1px 0px 5px;
  }

  .wip {
    color: #5d6a85;
    cursor: pointer;
  }

  .wip:hover {
    color: #4e4043a5;
    font-weight: bold;
    text-shadow: #2a2a2a 1px 0px 5px;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    margin: auto;
    background-color: #000000;
    color: #fdffff;
    /*background-blend-mode:hard-light;*/
    image-rendering: pixelated;
  }

  .newspaper {
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 800px;
    height: 600px;
    overflow: auto;
    background-color: #161616;
    border: solid;
    border-width: 16px;
    background-image: url("assets/gif/anim_slant_dark.gif");
    background-attachment: fixed;
    animation: night 25s linear infinite;
    border-image: linear-gradient(#755cff16, #0000009b) 1;
  }

  .error {
    background-color: #000000; height: 200px;
    background-image: none;
    animation: none;
    border: none;
  }

  a {
    color: #3edb05;
    cursor: pointer;
  }

  a:hover {
    color: #ffd1b4;
    font-weight: bold;
    text-shadow: #803e00 1px 0px 5px;
  }

  .wip {
    color: #778174;
    cursor: pointer;
  }

  .wip:hover {
    color: #625750;
    font-weight: bold;
    text-shadow: #000000 1px 0px 5px;
  }
}

@keyframes night {
  0%{ 
    background-position: 0px 0px; 
  }
  100%{ 
    background-position: -256px 256px; 
  } 
}

@keyframes day {
  0% {
    background-position: 0px 0px; 
  }
  100% {
    background-position: 256px -256px; 
  }
}

@keyframes stret {
  0%{ 
    background-size: 256px 256px;
  } 
  25% {
    background-size: 192px 256px;
  }
  50% {
    background-size: 192px 192px;
  }
  75% {
    background-size: 256px 192px;
  }
  100%{ 
    background-size: 256px 256px;
  }
}

.col3 {
  width: 30.385%;
  float:left;
  margin-left: 10px;
  margin-right: 10px;
  max-height:fit-content;
  padding-bottom: 20px;
}

.col2 {
  width: 73%;
  float:left;
  margin-left: 10px;
  margin-right: 10px;
  max-height:fit-content;
  padding-bottom: 20px;
}

.col {
  width: 20%;
  float: left;
  margin-left: 10px;
  margin-right: 10px;
  max-height:fit-content;
  font-size:12px;
}

.noLine {
  margin: 1px;
  visibility: hidden;
}

.winScroll {
  width:90%;height:110px;position:relative;margin:auto; 
}

.miniScroll {
  max-height:100%;overflow:auto;text-align:left;padding-left:5px;padding-right:5px;
}

.cent {
  text-align: center;
}

.middle {
  text-align: center;
  vertical-align: middle;
  line-height: 30px;
}

.fullSect {
  padding: 10px;
}

.prev {
  border: 8px solid #000;
}

.noMarge {
  margin-top: 5px;
  margin-bottom: 5px;
}

.alb {
  border: 1px solid #000;
}

.magazine {
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width:800px;
    height:600px;
    overflow:auto;
}

/*
code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  background-color: #000000; color: #fdffff;

}*/