:root {
  --mainColor: rgb(253, 254, 254); /* silver */
}

html, body {
    height: 100%;
	margin: 0;
} 

body {
	background-image: url("pix/back.png");
	background-attachment: fixed;
	background-color: #03183c; /* dark navy */
	color: rgb(253, 254, 254); /* silver */
	font-family: 'IBM Plex Mono', monospace;
}

a:link {
    color: rgb(102, 255, 255); /* ice blue */
	text-decoration: none;
}
a:visited {
    color: rgb(102, 255, 255); /* ice blue */
	text-decoration: none;
}
a:hover {
    color: rgb(253, 254, 254); /* silver */
    font-weight: bold;
}
a:active {
    color: rgb(253, 254, 254); /* silver */
    font-weight: bold;
}
a:focus {
    color: rgb(253, 254, 254); /* silver */
    font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
 color: rgb(253, 254, 254); /* silver */
 font-family: 'Marcellus SC', serif;
  text-shadow: 0px 0px 5px #4c0099, 0px 0px 10px #4c0099, 0px 0px 5px #4c0099,
    0px 0px 10px rgb(102, 255, 255);
}

img {
	max-width: 100%;
}

	.fantasyfont {
	font-family: 'Marcellus', serif;
	color: #e0c3fc; /* Lavender shimmer */
	font-size: 2rem;
	margin-bottom: 1rem;
	text-shadow: 0 0 6px #d8b4f8, 0 0 12px #b38bfc;
	}

    .heroicfont {
	font-family: 'Orbitron', sans-serif;
	color: #6fffe9; /* Electric cyan */
	font-size: 2rem;
	margin-bottom: 1rem;
	text-shadow: 0 0 5px #6fffe9;
	}

    .retrofont {
      font-family: 'Unica One', cursive;
      color: #ff6ec7; /* Neon pink */
      font-size: 2rem;
      margin-bottom: 1rem;
      text-shadow: 0 0 5px #ff6ec7;
    }
	
	.fantasyfont,
	.heroicfont,
	.retrofont {
  width: 100%;
  text-align: center;
}

@media (max-width: 1024px) {
    .fantasyfont,
	.heroicfont,
	.retrofont {
  text-align: left;
	}
}

.maingrid {
    display: grid;
	grid-template-columns: 1.2fr 0.8fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
		'area1 area2 area3';
    grid-gap: 1em;
	margin: 0 auto;
	box-sizing: border-box;
	max-width: 100vw;
    overflow-x: hidden;
}
	
@media (max-width: 1024px) {
    .maingrid {
        grid-template-columns: 1fr;
        grid-template-areas:
			'area1'
			'area2'
			'area3';
        padding: 0 10px;
    }
}

.area1 {
  grid-area: area1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.area1-content p {
  text-align: left;
  width: 100%;
  padding: 0 1em;
  margin: 0.5em 0 1em 0;
}

@media (max-width: 1024px) {
  .area1-content p {
    margin: 0em 0em 1em 0em;
	padding: 0em;
  }
}

.area2 {
	grid-area: area2;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.area3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  justify-content: center;
  height: 100%;
}

.subiframe-box {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 150px;
  border: 1px solid #EEE;
  background: white;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .subiframe-box {
    margin-left: 0;
    margin-right: 0;
    width: 80%;
  }

  .subscribe-text {
    margin-left: 0;
    margin-right: 0;
  }
}

.subscribe-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  border: none;
}

.subscribe-text {
  width: 90%;
  max-width: 600px;
  margin: 1em 0;
  text-align: left;
}

.subscribe-text strong {
	color: #42b742; /* Hacker green */
}

.subscribe-text li::before {
  color: #ff0e86 !important; /* Hot pink */
}

.subscribe-text li:not(:last-child) {
  margin-bottom: 1em;
}

a.subscribe-link {
  color: #e0c3fc !important; /* Lavender shimmer */
}

a.subscribe-link:hover {
  color: rgb(253, 254, 254) !important; /* silver */
}

.review {
  background-image: url('pix/back.png');
  background-repeat: repeat;
  background-size: cover;
  border-left: 3px solid;
  border-image: linear-gradient(to bottom, #ff6fcb, #6fffe9) 1;
  flex: 1 1 45%;
  max-width: 70%;
  padding: 10px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}

.review p {
  margin: 0 0 0.5em 0.5em;
}

.review a {
	color: #ff6fcb !important;
}

.review a:hover {
    color: rgb(253, 254, 254) !important;
}

@media (max-width: 1024px) {
    .review {
		flex: 1 1 90%;
		max-width: 90%;
		margin: 0.5em auto 0 auto;
	}
}
		
.review-label {
  font-weight: bold;
  color: #ff6fcb;
  margin-left: 1.5em;
}

.flexretbutts	{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 20px;
	margin-bottom: 20px;
}

.thing {
  width: 100%;
  max-width: 400px;
  height: auto;
  border: 2px dotted #42b742;
  }
  
  @media (max-width: 1024px) {
  .book-cover2 {
    width: 70%;
	margin: 0 auto;
  }
}

.booksgrid1 {
    display: grid;
	grid-template-columns: 1fr 0.8fr;
    grid-template-rows: auto;
    grid-template-areas:
		'blurb-title books1'
		'blurb1 books1'
		'butt1 books1';
    grid-row-gap: 0.5em;
	grid-column-gap: 0.1em;
	margin: 0 auto;
	width: 90%;
}

@media (max-width: 1024px) {
    .booksgrid1 {
        grid-template-columns: 1fr;
        grid-template-areas:
			'books1'
			'blurb-title'
			'blurb1'
			'butt1';  
		width: 100%;
    }
}

.booksgrid2 {
    display: grid;
	grid-template-columns: 0.8fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
		'books2 blurb-title'
		'books2 blurb2'
		'books2 butt2';
    grid-row-gap: 0.5em;
	grid-column-gap: 0.1em;
	margin: 0 auto;
	width: 90%;
}

@media (max-width: 1024px) {
    .booksgrid2 {
        grid-template-columns: 1fr;
        grid-template-areas:
			'books2'
			'blurb-title'
			'blurb2'
			'butt2';  
		width: 100%;
    }
}

.book-cover {
  width: 100%;
  max-width: 400px;
  height: auto;
  border: 2px solid #06402B;
}

@media (max-width: 1024px) {
	.book-cover {
		max-width: auto;
	}
}

.book-cover2 {
  width: 200px;
  max-width: none;
  height: auto;
  display: block;
  border: 1px solid #06402B;
}

@media (max-width: 1024px) {
  .book-cover2 {
    width: 70%;
	margin: 0 auto;
  }
}

.blurb1 {
	grid-area: blurb1;
}

.blurb2 {
	grid-area: blurb2;
}

.blurb1,
.blurb2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.blurb-title {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.blurb-title hr {
  border: 3px dashed #42b742;
}

.blurb-text {
  max-width: 90%;
  text-align: left;
}

.butt1 {
  grid-area: butt1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.butt2 {
  grid-area: butt2;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.books1 {
	grid-area: books1;
}

.books2 {
	grid-area: books2;
}

.books1,
.books2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  text-align: center;
}

.buybutt-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.buybtn {
    font-family: 'Roboto Slab', serif;
    background-color: #000000; 
    color: #42b742; /* Hacker green */
    font-size: 16px;
	padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #42b742; /* Hacker green */
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
	margin: auto 0;
}

.buybtn:hover {
    background-color: #42b742; /* Hacker green */
    color: #000000; 
    border-color: #000000;
}

.container {
  width: 80%;
  max-height: none;
  margin-left:auto;
  margin-right:auto;
  padding: 20px 10px 10px 10px;
  background-image: url("pix/purpback.png");
}

.morebooks-container {
	padding: 10px;
	width:60%;
	max-height: none;
    margin-left:auto;
    margin-right:auto;
	background-image: url("pix/purpback.png");
}

.morebooks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  justify-content: space-evenly;
}


@media (max-width: 1024px) {
  .container, .morebooks-container, .morebooks {
    width: 100%;
    box-sizing: border-box;
  }
}

.container li {
  list-style: none;
  position: relative;
  padding-left: 1.2em;
}

.container li::before {
  content: "► ";
  position: absolute;
  left: 0;
  top: 0;
  color: #42b742;
  font-weight: bold;
}

.container h1,
.morebooks-container h1, h2, h3 {
	color: #42b742; /* Hacker green */
	font-family: 'IBM Plex Mono', monospace;
	text-shadow: 0px 0px 5px #000000, 0px 0px 10px #000000, 0px 0px 5px #ffffff,
    0px 0px 10px #ffffff;
	margin: 0 auto;
	text-align: center;
}

.container a,
.morebooks-container a {
    color: #42b742; /* Hacker green */
    font-weight: bold;
    text-decoration: none;
}

.container a:hover,
.morebooks-container a:hover {
    color: rgb(253, 254, 254); /* silver */
    font-weight: bold;
}

.container hr,
.morebooks-container hr {
  border: 3px dashed #42b742;
  width: 100%;
}

/* Main Nav Start */
.topnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
}

.logo {
  font-size: 1.5em;
  color: white;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
  list-style: none;
}

.nav-links > li > a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5em;
  transition: color 0.3s ease;
  display: inline-block;
}

.nav-links > li > a::before {
  content: "✕";
  color: #42b742;
  font-weight: bold;
  margin-right: 0.5em;
  display: inline-block;
  transform: translateX(2px);
}

.nav-links a:hover {
  color: #42b742;
}

.maindrop {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #06402B;
  border: 1px solid #42b742;
  padding: 0.5em 1em;
  z-index: 10;
  min-width: 180px;
  margin: 0;
}

.maindrop li {
  list-style: none;
  margin: 0.5em 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
}

.maindrop li::before {
  content: "►";
  color: #42b742;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.2em;
}

.maindrop li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
  word-wrap: break-word;
  white-space: normal;
  display: inline-block;
}

.nav-links li:hover .maindrop {
  display: block;
}
/* Main Nav End */

.topbox {
	background: #1A1A1A;
	border-radius: 5px;
    border: 1px solid #42b742;
    box-shadow: 3px 3px #06402B;
	width: 85%;
    margin: 0 auto;
	margin-bottom: 3em;
	margin-top: 2em;
}

@media (max-width: 1024px) {
  .topbox {
    display: none;
  }
}

.toptitle-bar {
  background: linear-gradient(90deg, #2A003F 0%, #6A1B8E 100%);
  color: rgb(253, 254, 254);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 5px;
  gap: 1em;
}

.topright {
  margin: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: bold;
  line-height: 12px;
}

.pagesgrid {
    display: grid;
	grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
		'pages1 pages2';
    grid-row-gap: 0.5em;
	grid-column-gap: 2em;
	margin: 0em auto;
    width: 80%;
}

@media (max-width: 1024px) {
    .pagesgrid {
        width: 95%;
		grid-column-gap: 1em;
    }
}

.pagesgrid2 {
    display: grid;
	grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
		'pages1 pages2';
    grid-row-gap: 0.5em;
	grid-column-gap: 0.5em;
	margin: 0em auto;
    width: 90%;
}

@media (max-width: 1024px) {
    .pagesgrid2 {
        width: 95%;
		grid-template-columns: 1fr;
        grid-template-areas:
			'pages1'
			'pages2';
    }
}

.pages1 {
	grid-area: pages1;
}

.pages2 {
	grid-area: pages2;
}

.pages1,
.pages2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
}

.box {
	background: #4500e2;
    border-radius: 5px;
    border: 1px solid #42b742;
    box-shadow: 3px 3px #06402B;
    width: fit-content;
	height: fit-content;
    box-sizing: border-box;
	margin: auto 0;
}

.inner {
	padding: 10px;
	padding-bottom: 5px;
	padding-top: 0px;
}

.title-bar {
    background: linear-gradient(90deg, #2A003F 0%, #6A1B8E 100%);
    color: rgb(253, 254, 254);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.gtitle-bar {
    background: linear-gradient(90deg, #42b742 0%, #06402B 100%);
    color: rgb(253, 254, 254);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.right {
    margin-right: 5px;
    font-family: 'IBM Plex Mono', monospace;
	font-weight: bold;
    line-height: 12px;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#statuscafe {
    background: #4500e2;
	padding: .5em;
}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}

.jeff {
	width: auto;
	text-align: left;
	margin-left: 2em;
}

.cazz {
	width: auto;
	text-align: right;
	margin-right: 2em;
}

.frodo {
	width: auto;
	text-align: right;
	margin-right: 2em;
	margin-top: 1em;
	margin-bottom: 1em;
}

@media (max-width: 1024px) {
	.jeff, .cazz, .frodo {
		text-align: center;
		margin-bottom: 20px;
		margin-top: 20px;
		margin-right: 0em;
		margin-left: 0em;
	}
}

.promo {
	max-width: 900px;
	background: #4500e2;
    border-radius: 5px;
    border: 1px solid #42b742;
    box-shadow: 2px 2px #06402B;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

@media (max-width: 1024px) {
	.promo {
		width: 90%;
	}
}

.socials img {
  display: block;
  vertical-align: middle;
}

.bigfoot {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	background-image: url("pix/purpback.png");
    border-radius: 5px;
    border: 1px solid #42b742;
    padding: 10px;
	width: auto;
	text-align: center;
	position: relative;
}

.lilfoot {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-image: url("pix/purpback.png");
    border-radius: 5px;
    border: 1px solid #42b742;
    padding: 10px;
	padding-top: 25px;
	width: auto;
	text-align: center;
	position: relative;
}

.footer {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-image: url("pix/purpback.png");
    border-radius: 5px;
    border: 1px solid #42b742;
    padding: 10px;
	padding-top: 25px;
	width: auto;
	text-align: center;
	position: relative;
}

.bigfoot a, .lilfoot a, .footer a {
    color: #42b742;
}

.bigfoot a:hover, .lilfoot a:hover, .footer a:hover {
    color: rgb(253, 254, 254); /* silver */
}

@media (max-width: 1024px) {
  .bigfoot {
    display: none;
  }
}

@media (min-width: 1025px) {
  .lilfoot {
    display: none;
  }
}

.headerwrapper-foot {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.headerimg-foot {
	width: 168px;
	align-self: end;
	margin-left: auto;
	margin-bottom: -3rem;
	position: relative;
	z-index: 1;
}

.biglinks {
    padding: 0px;
	margin: 0px;
	font-size: x-large;
	font-family: 'Roboto Slab', serif;
	line-height: 150%;
	}
	
.biglinks	a {
	color: var(--mainColor);
	text-decoration: none;
}

.biglinks a:hover {
	color: transparent;
	-webkit-text-stroke: 1px var(--mainColor);
}

@supports not(-webkit-text-stroke: 2px red) {
  .biglinks a:hover {
    text-shadow:
      3px 3px 0 var(--mainColor),
      -1px -1px 0 var(--mainColor),
      1px -1px 0 var(--mainColor),
      -1px 1px 0 var(--mainColor),
      1px 1px 0 var(--mainColor);
  }
}
 
.progress-bar1 {
		padding: 5px;
		height : 20px;
	}

	.progress-bar1 > span {
		height            : 100%;
		display           : block;
		overflow          : hidden;
		position          : relative;
		background-color  : #42b742;
		border-radius: 2em 2em 2em 2em;
		transition        : 500ms linear;
		-webkit-transition: 500ms linear;
	}

	.progress-bar1 > span:after {
		content          : "";
		top              : 0;
		left             : 0;
		right            : 0;
		bottom           : 0;
		z-index          : 1;
		position         : absolute;
		background-size  : 50px 50px;
		overflow         : hidden;
		animation        : stripes-move 1s linear infinite;
		-webkit-animation: stripes-move 1s linear infinite;
		background-image : -webkit-linear-gradient(135deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
		background-image : linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
	}
	
	 .progress-bar2 {
		padding: 5px;
		height : 20px;
	}

	.progress-bar2 > span {
		height            : 100%;
		display           : block;
		overflow          : hidden;
		position          : relative;
		background-color  : #42b742;
		border-radius: 2em 2em 2em 2em;
		transition        : 500ms linear;
		-webkit-transition: 500ms linear;
	}

	.progress-bar2 > span:after {
		content          : "";
		top              : 0;
		left             : 0;
		right            : 0;
		bottom           : 0;
		z-index          : 1;
		position         : absolute;
		background-size  : 50px 50px;
		overflow         : hidden;
		animation        : stripes-move 1s linear infinite;
		-webkit-animation: stripes-move 1s linear infinite;
		background-image : -webkit-linear-gradient(135deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
		background-image : linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
	}

 .progress-bar3 {
		padding: 5px;
		height : 20px;
	}

	.progress-bar3 > span {
		height            : 100%;
		display           : block;
		overflow          : hidden;
		position          : relative;
		background-color  : rgb(86, 39, 102);
		border-radius: 2em 2em 2em 2em;
		transition        : 500ms linear;
		-webkit-transition: 500ms linear;
	}

	.progress-bar3 > span:after {
		content          : "";
		top              : 0;
		left             : 0;
		right            : 0;
		bottom           : 0;
		z-index          : 1;
		position         : absolute;
		background-size  : 50px 50px;
		overflow         : hidden;
		animation        : stripes-move 1s linear infinite;
		-webkit-animation: stripes-move 1s linear infinite;
		background-image : -webkit-linear-gradient(135deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
		background-image : linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
	}

	@-webkit-keyframes stripes-move {
		0% {
			background-position: 0 0;
		}
		100% {
			background-position: 50px 50px;
		}
	}

	@keyframes stripes-move {
		0% {
			background-position: 0 0;
		}
		100% {
			background-position: 50px 50px;
		}
	}

	.progress-bar1 > span:after {
		-webkit-animation: stripes-move 2s linear infinite;
		animation        : stripes-move 2s linear infinite;
	}
	.progress-bar2 > span:after {
		-webkit-animation: stripes-move 2s linear infinite;
		animation        : stripes-move 2s linear infinite;
	}
	.progress-bar3 > span:after {
		-webkit-animation: stripes-move 2s linear infinite;
		animation        : stripes-move 2s linear infinite;
	}
  
.navbuttstyles {
  position: relative;
  margin: 0 auto 20px auto;
  padding: 10px;
  box-sizing: border-box;
  max-width: 1310px;
  display: none;
  align-items: center;
  height: 60px;
}

@media (max-width: 1024px) {
  .navbuttstyles {
    display: flex;
  }
}

@media (min-width: 1025px) {
  .navbuttstyles {
    display: none;
  }
}

.navlogo {
  position: absolute;
  left: 50%;
  transform: translateX(-65%);
}

.navlogo img {
  max-height: 50px;
  width: auto;
  display: block;
}

/* NAVBUTT START */

.dropcontainer {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  font-family: 'Roboto Slab', serif;
  background-color: #000000;
  color: #42b742; /* Hacker green */
  padding: 10px;
  font-size: 16px;
  border-style: solid;
  border-width: 1px;
  border-color: #42b742; /* Hacker green */
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 3;
  right: 0;
}

.submenu-content {
  display: none;
  position: relative;
  background-color: #f9f9f9;
  min-width: 100%;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.submenu-content a {
  color: #4c0099;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover,
.submenu-content a:hover {
  background-color: #ddd;
}

/* NAVBUTT END */

/* Scroll Bar Width */
::-webkit-scrollbar {
  width: 10px;
}
/* Scroll Bar Track */
::-webkit-scrollbar-track {
  background: #06402B; 
}
 
/* Scroll Bar Handle */
::-webkit-scrollbar-thumb {
  background: #42b742;
}

/* Scroll Bar Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #3e9f3e;
}

@keyframes fade-in-out
{
	0%,100% { opacity: 0 }
	50% { opacity: 1 }
}

.fade-in-out
{
	text-decoration: none;
	animation: fade-in-out 2s ease-in-out infinite alternate;
	-webkit-animation: fade-in-out 2s ease-in-out infinite alternate;
}