/*### FADE-IN ANIMATION ###*/
.overlay-black{
  pointer-events:none;
  position:absolute;
  top:0;
  left:0;
  height:100vh;
  width:100vw;
  z-index:1000;
  background-color:black;
  animation-name:fadeIn;
  animation-duration:1.5s;
  animation-timing-function:ease-in;
  animation-fill-mode: forwards;
}
@keyframes fadeIn {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/*### SITEWIDE ###*/
body {
  background-image:url("images/prayerbg.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  color:#00ff46;
}
h1 {
	position:relative;
	padding:2px 0;
	margin:0;
}
h1:hover {
  cursor:default;
}
h2 {
  margin-top:3px;
  margin-bottom:3px;
}
h2:hover {
  transform:scale(1.1);
  cursor:default;
}
a {
  color:inherit;
  text-decoration:inherit;
}
textarea {
  resize:none;
  border-color:#009146;
  background-color:#000000;
  color:#00ff46;
  border:1px;
  border-style:solid;
}

/* || Scrollbar*/
::-webkit-scrollbar {
  width:10px;
}
::-webkit-scrollbar-track {
  background-color:#001A0D;
  border:3px groove #001100;
}
::-webkit-scrollbar-track:hover {
  background-color:#004823;
  border:3px groove #001A0D;
}
::-webkit-scrollbar-thumb {
  background-color:#004823;
  border:2px outset #001A0D;
}
::-webkit-scrollbar-thumb:hover {
  background-color:#009146;
  border:2px outset #004823;
}
::-webkit-scrollbar-thumb:active {
  background-color:#00FF46;
  border:2px inset #009146;
}
::-webkit-scrollbar-corner {
  background-color:#000000;
}
::-webkit-resizer {
  background-color:#000000;
}

/*### TOP PART OF SCREEN ###*/

/* || Top header */
.header {
	position:sticky;
	top:0;
	width:100%;
	background-color:#000000;
	text-align:center;
	margin-top:0;
	z-index:1;
}
.header:hover {
  background-color:#004823;
}

/* || Music bar */
.music {
  background-image:linear-gradient(to right, #009146, #00918c);
  height:22px;
  width:100%;
  margin-top:2px;
  color:#000000;
  display:flex;
  align-items:center;
  font-size:18px;
}
.music:hover {
  background-image:linear-gradient(to right, #00ff46, #00ff8c);
  cursor:default;
}
