/* INDEX SPECIFIC */
.notebook {
	font-family: 'uni';
	font-size: 14px;
    font-smooth: never;
	text-align: justify;
	letter-spacing: 0.5;
	line-height: 1;
	color: #0b355cff;
    height: 100%;
	position: fixed;
    width: 100%;
	padding: 0;
	margin: 0;
    background-image: var(--body-bg-image);
    background-repeat: repeat;
    background-size: var(--bg-size);
    background-position: center center;
	background-color: black;
	background-attachment: fixed;
    image-rendering: var(--image-rendering);
	overflow: hidden;
	transition: opacity .5s;
	will-change: transform;
	cursor: url("../img/cursors/c.normal.png"), default;
}
.titleimage{
    width: 100%;
    overflow: hidden;
	transition: transform .2s;
    filter: hue-rotate(var(--icon-hue-rotate)) saturate(var(--icon-saturation)) brightness(var(--icon-brightness)) saturate(var(--icon-saturation));
}
.titleimage:hover{
	transform: scale(1.05);
	filter: drop-shadow(0 0 0.50rem rgba(255, 0, 0, 0.45)) hue-rotate(var(--icon-hue-rotate)) saturate(var(--icon-saturation)) brightness(var(--icon-brightness)) saturate(var(--icon-saturation));
}
.notebookitself{
	width: 90%;
	height: 95%;
	margin: auto;
	padding-top: 15px;
	z-index: 0;
}
.notepages{
	position: relative;
	display: flex;
    flex-direction: row;
	flex-wrap: wrap;
    background-color: #cbcbcb;
	border: inset;
	align-items: stretch;
	justify-content: space-around;
	height: 90%;
	z-index: 10;
}
.notepages h2 a{
	color: #55b7f6;
	text-decoration: none;
	-webkit-text-stroke: #55b7f6;
	white-space: break-spaces;
}
.notepages h2 a:hover{
	color: #1195ec;
	text-decoration: none;
	-webkit-text-stroke: 0.5px #1195ec;
}
.notepages h2 a:visited{
	color: #ef982c;
	text-decoration: none;
	-webkit-text-stroke: 0.5px #ef982c;
}
.notepages p{
	padding: 5px;
	margin-top: 0;
}
.rightnotepage{
	width: 45%;
	height: 95%;
    background-color: white;
	border: outset;
    padding: 8px;
    margin: 8px;
	min-width: 50px;
	flex: 1 2 auto;
	overflow-y: auto;
	overflow-x: hidden;
}
.leftnotepage{
	width: 45%;
	height: 95%;
    background-color: white;
	border: outset;
    padding: 8px;
    margin: 8px;
	min-width: 50px;
	flex: 1 2 auto;
	overflow-y: auto;
	overflow-x: hidden;
}
.leftnotepage h1{
	text-align: right;
	padding-right: 20px;
}
.indexline {
	height: 0;
	flex-grow: 1;
	border: dashed 1px;
	margin: 0 5px 3px 0;
}
.nav{
	padding-top: 30px;
	padding-left: calc(5% + 11px);
	position: relative;
	z-index: 11;
}
.nav a{
	font-family: 'win';
    text-decoration: none;
    font-size: 14px;
    color: white;
    background-color: #D31E2F !important;
    height: 37px;
    padding: 14px 10px 46px;
    border: double #97000e !important;
    cursor: url("img/cursors/c.point.png"), pointer !important;
	filter: hue-rotate(var(--icon-hue-rotate)) saturate(var(--icon-saturation)) brightness(var(--icon-brightness)) saturate(var(--icon-saturation));
}
.nav a:hover{
    border: inset;
    background-color: #cbcbcb;
}
.current{
	padding: 10px;
	border: double !important;
	background-image: linear-gradient(to bottom, #FFDC60, #D31E2F);
	color: #97000e !important;
	font-weight: bold;
	padding-bottom: 60px !important;
}
@media (max-width: 850px) {
	.flex-container {
		flex-direction: column;
	}
	.leftnotepage{
		height: 44%;
	}
	.rightnotepage{
		height: 44%;
	}
	.current{
		padding-bottom: 60px !important;
	}
	.indexbox{
		display: none;
	}
}
@media (min-width: 1400px){
	.current{
		padding-bottom: 90px !important;
	}
}
.indexbox{
	margin: 15px;
	align-self: flex-end;
	bottom: 0;
}
.nav a:visited{
    border: outset white;
    background-color: #dfdfdf;
}
.pages{
	text-align: end;
	padding-right: 5%;
	position: relative;
	z-index: 10;
}
.pages a{
    font-family: 'win';
    text-decoration: none;
    font-size: 14px;
    color: #323232;
    background-color: #dfdfdf;
    height: 14px;
    padding: 7px 10px;
	margin-left: 10px;
    border: outset white;
    cursor: url("img/cursors/c.point.png"), pointer;
}
.pages a:hover{
    border: inset;
    background-color: #cbcbcb;
    color: black;
}
.pages a:visited{
    border: outset white;
    background-color: #dfdfdf;
}