@import 'scripts-styles/varsheet_main-theme.css';
@import '';

* { box-sizing: border-box; 
	scrollbar-width: none;
}


/*
==============
	CURSORS
==============
*/
* {
	cursor: crosshair;
}

a, a img, button {
	cursor: pointer;
}

*[onclick] {
	cursor: pointer;
}


/*
==============
	TEXT DECOR
==============
*/
.red-glow-ani {
	text-shadow: 0 0 20px red;
	animation: red-glow-ani 5s ease-in-out infinite alternate;
}
@keyframes red-glow-ani {
	30% { text-shadow: 0 0 20px red; }
	100% { text-shadow: 0 0 5px red; }
}



/*
==============
	BODY
==============
*/
body {
	margin: 0;
	color: #fff;
	font-family: var(--gen-serif);
	position: relative;
}

::-webkit-scrollbar {
  display: none;
}

.banner, .navbar {
	width: 100vw;
}


/*
==============
	BANNER
==============
*/
.banner {
	height: 150px;

	background: url('img/bg2.jpg');
 	background-size: 100%;
 	background-position: left 0 top -90px;

 	text-align: center;
 	display: flex;
 	justify-content: center;
 	align-items: center;

 	border: 0 var(--border-gray) solid;
 	border-bottom-width: 3px;
}
.banner h1 {
 	font-family: 'oe5', 'monotype corsiva', serif;
	margin: 0;
	font-size: 5rem;

	display: inline-block;
	word-wrap: none;
	line-height: 1;
	transition: text-shadow 2s ease-in-out;
}
.banner h1:hover {
	text-shadow: 0 0 30px red;
	transition: text-shadow 2s ease-in-out;
}
.banner h1::before, .banner h1::after {
	content: ' ~ ';
	font-family: var(--gen-serif);
}



/*
==============
	NAVBAR
==============
*/
.navbar {
	background-image: linear-gradient(
			var(--grdnt-red1),
			var(--grdnt-red2)
		);
	/*background-size: auto 2.5rem;*/
	border: 0 var(--border-gray) solid;
	border-bottom-width: 3px;

	width: 100%;
	/*height: 2.5rem;*/

	position: sticky;
	top: 0;
	z-index: 100;
}

.navbar ul {
	margin: 0; padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.navbar ul::before, .navbar ul::after {
	content: ' ~ ';
}

.navbar a {
	display: block;
	height: 100%;
	padding: 10px 10px 8px 10px;

	font-size: 1rem;
	font-family: consolas, monospace;
	font-weight: bold;
	color: white;
	text-decoration: none;
	text-transform: uppercase;
}
.navbar a:hover {
	background-image: linear-gradient(
			var(--grdnt-red2),
			var(--grdnt-red1)
		);
	color: white;
}
.navbar li:hover a {
	text-decoration: underline;
	text-shadow: 0 0 10px white;
}


#log div {
	padding: 8px;
	font-size: 14px;
	overflow: auto;
}
#log hr { 
	border: 1px dashed white;
}

#log a { color: yellow; }
#log a:hover {
	background: white;
	color: red;
}
#log span.hl { 
	color: red; 
	text-shadow: 0 0 10px #ff2828;
}

/* updates */

#log-mainlist {
	margin: 10px 0;
	list-style-type: '➼';
	padding: 0; padding-left: 15px;
}

#log-mainlist>li {
	padding-left: 5px;
	font-weight: bold;
}

#log-mainlist ul {
	padding-left: 25px;
	width: 100%;
}

#log-mainlist>ul li {
	font-size: 16px;

}

/* updates - todo */
#todo {
	text-align: center;
	display: none;
	margin: 10px 0; padding: 0;
	list-style-type: none;
}
#todo {
	margin: 10px 0; padding: 0;
}
#todo>ul {
	text-align: left !important;
	padding-left: 40px;
}
#todo>ul>ul {
	padding-left: 20px;
}

.todo-link-des {
	display: block;
	margin: 0;
	text-align: center;
	font-size: 16px; 
	font-weight: bold; 
	text-decoration: underline; 
	color: red; 
}
.todo-link-des:hover {
	text-shadow: 0 0 10px #ff2828;
	background: transparent;
}