/* ------------------ HI AGAIN ------------------------ */
/* CURSORS START */
/* CURSORS END */

/* ROOT COLORS START */
:root {
	--main-black: black;
	--secondary-black: #1f1f1f;
	--main-gray: #535353;
	--main-white: white;
	--main-blue: #00b1ff;
}
/* ROOT COLORS END */

/* HIGHLIGHT START */
mark {
	background-image: linear-gradient(0deg, #2c8fff 21%, #00b1ff 61%, #5fd0ff 100%);
	color: black;
	font-weight: bolder;
}

::selection {
	color: var(--main-black);
	background: var(--main-blue);
}
/* HIGHLIGHT END */


/* SCROLLBARS START */
/* FIREFOX */
* {scrollbar-width: thin; scrollbar-color: var(--main-blue) var(--secondary-black);}

/* CHROME, EDGE, SAFARI */
*::-webkit-scrollbar {width: 8px;}
*::-webkit-scrollbar-track {background: var(--secondary-black);}
*::-webkit-scrollbar-thumb {background-color: var(--main-blue); border-radius: 4px; border: 3px solid var(--main-blue);}
/* SCROLLBARS END */


/* FONT START */
@font-face {
	font-family: Synkopy;
	src: url('https://file.garden/ZpMlZiOun08fNAbF/fonts/Synkopy/Synkopy-Regular.otf') format("opentype");
}

@font-face {
	font-family: Galmuri;
	src: url('https://file.garden/ZpMlZiOun08fNAbF/fonts/galmuri/Galmuri9.ttf') format("truetype");
}

@font-face {
	font-family: MilkyWell;
	src: url('https://file.garden/ZpMlZiOun08fNAbF/fonts/milky_well/MilkyWell.ttf') format("truetype");
}

@font-face {
    font-family: Distro2;
    src: url('https://file.garden/ZpMlZiOun08fNAbF/fonts/dingbats/distro_bats/Distro2%20Bats.ttf') format("truetype");
}
/* FONT END */


/* LINKS START */
a { color: var(--main-blue); }

a:hover { color: cyan; cursor: crosshair; }

a:active { color: var(--main-white); }
/* LINKS END */


/* SKELETON START */
html {
	font-size: 11px;
	font-family:'Galmuri';
}

body {
	background: var(--main-black);
	color: var(--main-white);
    position: relative;
}

/* divider start */
hr {
	border-style: dashed none none none;
	border-color: var(--main-gray);
	width: 100%;
}
/* divider end */

/* headers start */
h1, h2 {
    font-family: 'Synkopy';
    text-shadow: 1px 1px 7px #4479ff;
    letter-spacing: 1px;
    font-weight: normal;
}

h1 {
    font-size: 24px;
}

h1:after {
    font-family: 'Distro2';
    font-size: 11px;
    content: ' w w w w w w w w w w w w w w w w w w w';
    filter: drop-shadow(1px 1px 7px #4479ff);
}

h2 {
    font-size: 14px;
}
/* header end */

/* bold txt start */
b.qn {
    font-family: 'MilkyWell';
    font-size: 24px;
    text-shadow: 1px 1px 7px #4479ff;
    letter-spacing: 1px;
}
/* bold txt end */

/* gallery start */
.gallery {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    overflow-wrap: break-word;
    
    gap: 5px;
    width: 90%;
}

.gallery img {
	height: 88px;
	border: 2px solid #8b8b8b;
	border-radius: 5px;
	margin-bottom: -3px;
	filter: brightness(0.5) contrast(83%) saturate(173%);
	position: relative;
}

.gallery img:hover {
	filter: opacity(100%);
	transform: scale(1.1);
	object-fit: cover;
	cursor: crosshair;
}

.pic:hover span.g-text { display: block; }

.g-text {
	font-size: 10px;
	display: none;
	position: absolute;
	z-index: 100;
	overflow-wrap: break-word;
	text-align: left;
	padding: 5px;

	background: #131313 url(https://file.garden/ZpMlZiOun08fNAbF/graphix/bgs/snow.png);
	background-size: 350px;
	border: 1px solid #00b1ff;
	color: white;
	border-radius: 3px;

    margin-left: 93px;
    margin-top: -55px;
	width: 130px;
}

.g-text b {
	font-weight: 1000;
	font-style: italic;
}

.lw.gallery .g-text {
    margin-top: -100px;
}
/* gallery end */