body {
    background: black;
    color: white;
}
body:before {
	content: "";
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1000;
	background-image: url(lain/overlay.png);
	background-repeat: all;
	background-position: 0px 0px;
	animation-name: Static;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: steps(4);
	box-shadow: inset 0px 0px 10em rgba(0,0,0,0.4);
}
body:after {
	content: "";
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1000;
	background-image: url(lain/overlay2.png);
	background-repeat: all;
	background-position: 0px 0px;
	animation-name: Static;
	animation-duration: 0.8s;
	animation-iteration-count: infinite;
	animation-timing-function: steps(4);
}
@keyframes Static {
	0% { background-position: 0px 0px; }
	100% { background-position: 0px 4px; }
}
.container {
    width: 700px;
    height: 200px;
    margin: auto;
}
header {
    background-image: url(lain/notreal.jpg);
    background-position: center;
    height: 150px;
    position: relative;
}
nav {
    background-color: #00096e;
    padding: 3px;
    display: flex;
    justify-content: space-around;
}
main {
    text-align: justify;
    text-indent: 10px;
}
span {
    background-color: #ffd000;
    color: black;
}

.manga {
    padding-bottom: 10px;
    display: flex;
    overflow-x: scroll;
}
.manga img {
    border: 0;
    width: 200;
    padding: 0;
}
.manga::-webkit-scrollbar {
  height: 7px;
}
/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 70px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: fixed;
    background-color: rgba(0, 0, 0, 0.8);
}
.modal img {
    border: 0;
    padding: 0;
}
/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 100%;
    max-width: 450px;
    overflow: fixed;
}
/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-family: sans-serif;
  font-weight: bold;
}
.close:hover, .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
/* Hide the slides by default */
.mySlides {
  display: none;
}
/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}
/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

#more ul {
    margin-bottom: 5px;
    list-style: none;
    text-indent: 0;
}
#videos {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 5px;
}
#videos iframe {
    width: 224px;
    height: 126px;
}
footer {
    margin-top: 5px;
    text-align: center;
    opacity: 0.5;
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}
::-webkit-scrollbar-track {
    background: transparent;
    margin: 0;
}
::-webkit-scrollbar-thumb {
    background-color: #00096e;
    border: none;
    border-radius: 0;
}