@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* INDEX SPECIFIC */
.notebook {
	font-family: 'Roboto';
	font-size: 14px;
    font-smooth: never;
	text-align: justify;
	letter-spacing: 0.5;
	line-height: 1;
	color: black;
    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: #ffde66;
	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: solid black 2px;
	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: solid black 1px;
    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: solid black 1px;
    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: solid #480007 2px !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;
	background-image: linear-gradient(to bottom, #FFDC60, #D31E2F);
	color: #97000e !important;
	font-weight: bold;
	padding-bottom: 60px !important;
}

.gallerybox {
	border: solid black 2px;
    padding: 12px 16px;
    background-color: #f1f1f1;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	row-gap: 2px;
}

.gallerybox img{
	border: solid black 2px;
	transition: transform 0.3s ease;
}

.gallerybox img:hover{
  filter: drop-shadow(0 0 30px #fff279);
  transform: scale(1.02) rotate(2deg);
	image-rendering: pixelated;
}

.copymy button{
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	row-gap: 5px;
	padding: 10px 5px;
	border: solid black 1px;
}

.copymy button:hover{
	background-color: #fff8c3;
	border: solid black 1px;
}

.copymy img{
	width: 100%;
	image-rendering: pixelated;
	border: none;
}

@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: #cbcbcb;
    height: 14px;
    padding: 7px 10px;
	margin-left: 10px;
    border: solid black 2px !important;
    cursor: url("img/cursors/c.point.png"), pointer;
}
.aindex{
	text-decoration: none;
	color: #0b355cff !important;
}
.aindex:hover{
	color: #ffa400 !important;
}
.pages a:hover{
    border: inset;
    background-color: #cbcbcb;
    color: black;
}
.pages a:visited{
    border: outset white;
    background-color: #dfdfdf;
}