:root {
	background-color: #000000;
  	background-image: url('img/bg.png');
  	background-size: fill;
  	color: #FFFFFF;
  	font-family: Tahoma, sans-serif; "Segoe UI Symbol";
}

a {
    color: #ffb400;
    text-decoration: none;
}

* {
  	scrollbar-color: #ffb400 transparent;
  	scrollbar-width: thin;
}

a:hover {
    color: #0d0d0d;
    background-color: #FFFFFF;
    cursor: pointer;
}

img:hover {
	background: none;
	transform: scale(1.1);
}

a.img:hover {
	background: none;
	cursor: pointer;
}

img.no-hover {
	outline: transparent;
	transform: none;
}

.list {
	list-style-type: none;
	padding: 0;
	margin-top: 10px;
	margin-bottom: 0px;
}

.list li {
	display: flex;
	margin: 8px 0;
}

.list a {
	color: #ffb400;
	text-decoration: inherit;
	position: relative;
	display: inline-block;
}

/* apparently i've got helluva lot of lists... */

.list a:hover {color: #0d0d0d; background-color: #FFFFFF;}

/* suprasphere list */
.list1 li::before {content: "▸ "; color: #cb0606;}
.list1 li:hover::before {content: "▶ "; color: #cb0606;}
.list1 li:has(strong)::before {content: "";}
.list1 li:hover:has(strong)::before {content: ""; color: #cb0606;}
.list1 li strong {color: #cb0606;}
.list1 li strong::before {content: "▶ "; color: #cb0606;}

/* post-medium list */
.list2 li::before {content: "▸ "; color: #00644e;}
.list2 li:hover::before {content: "▶ "; color: #00644e;}
.list2 li:has(strong)::before {content: "";}
.list2 li:hover:has(strong)::before {content: ""; color: #00644e;}
.list2 li strong {color: #00644e;}
.list2 li strong::before {content: "▶ "; color: #00644e;}

/* medium list */
.list3 li::before {content: "▸ "; color: #00644e;}
.list3 li:hover::before {content: "▶ "; color: #00644e;}
.list3 li:has(strong)::before {content: "";}
.list3 li:hover:has(strong)::before {content: ""; color: #00644e;}
.list3 li strong {color: #00644e;}
.list3 li strong::before {content: "▶ "; color: #00644e;}

/* galleries, a lot of them too */
#gallery1 { /* 3 columns */
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 4px;
}

#gallery2 { /* 2 columns */
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 4px;
}

#gallery3 { /* 5 columns */
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 4px;
}

#gallery4 { /* 6 columns */
    display: grid;
    grid-template-columns: repeat(6, auto);
    gap: 4px;
}

#gallery5 { /* 8 columns */
    display: grid;
    grid-template-columns: repeat(8, auto);
    gap: 4px;
}

#gallery6 { /* 9 columns */
    display: grid;
    grid-template-columns: repeat(9, auto);
    gap: 4px;
    padding-bottom: 8px;
}

#gallery1 a,
#gallery2 a,
#gallery3 a,
#gallery4 a,
#gallery5 a,
#gallery6 a,
#gallery1 img,
#gallery2 img,
#gallery3 img,
#gallery4 img,
#gallery5 img,
#gallery6 img {
    display: block;
    height: auto;
    width: 100%;
}

#poemlist { /* the list for poems */
	display: grid;
	grid-template-columns: auto auto auto;
	gap: 15px;
}

h1 {margin-bottom: 0rem; margin-top: 10px}
h2 {margin-top: 4px}


.nav-btn { /* navigation buttons, all of them */
    all: unset;
    height: 49px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.nav-btn-home { /* HOME BUTTON */
    width: 134px;
    background-image: url('img/navbtns/home.png');
}
.nav-btn-home-active {
    width: 134px;
    background-image: url('img/navbtns/home_active.png');
}
.nav-btn-home:hover {
    width: 134px;
    background-image: url('img/navbtns/home_pressed.png');
}

.nav-btn-art { /* ART BUTTON */
    width: 71px;
    background-image: url('img/navbtns/art.png');
}
.nav-btn-art-active {
	width: 71px;
    background-image: url('img/navbtns/art_active.png');
}
.nav-btn-art:hover {
	width: 71px;
    background-image: url('img/navbtns/art_pressed.png');
}

.nav-btn-music { /* MUSIC BUTTON */
    width: 104px;
    background-image: url('img/navbtns/music.png');
}
.nav-btn-music-active {
    width: 104px;
    background-image: url('img/navbtns/music_active.png');
}
.nav-btn-music:hover {
    width: 104px;
    background-image: url('img/navbtns/music_pressed.png');
}

.nav-btn-poems { /* POEMS BUTTON */
    width: 103px;
    background-image: url('img/navbtns/poems.png');
}
.nav-btn-poems-active {
    width: 103px;
    background-image: url('img/navbtns/poems_active.png');
}
.nav-btn-poems:hover {
    width: 103px;
    background-image: url('img/navbtns/poems_pressed.png');
}

.nav-btn-texts { /* TEXTS BUTTON */
    width: 111px;
    background-image: url('img/navbtns/texts.png');
}
.nav-btn-texts-active {
    width: 111px;
    background-image: url('img/navbtns/texts_active.png');
}
.nav-btn-texts:hover {
    width: 111px;
    background-image: url('img/navbtns/texts_pressed.png');
}

.nav-btn-guestbook { /* GUESTBOOK BUTTON */
    width: 160px;
    background-image: url('img/navbtns/guestbook.png');
}
.nav-btn-guestbook:hover {
    width: 160px;
    background-image: url('img/navbtns/guestbook_pressed.png');
}


#header { /* header (invisible) */
	display: flex;
	flex-direction: column;
	height: 88px;
	margin-bottom: 10px;
	display: flex;
	background-color: transparent;
}


.wrapper { /* wrapping ALL the main containers up + background image */
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 1020px;
	height: 708px;
    background-repeat: no-repeat;
    background-size: auto auto;
    margin: 0 auto;
    background-position: 0px 12px;
}

.wrapper-home { /* HOME */
	background-image: url('img/neoneo/home.png');
}

.wrapper-art { /* ART */
	background-image: url('img/neoneo/art.png');
}

.wrapper-music { /* MUSIC */
	background-image: url('img/neoneo/music.png');
}

.wrapper-poems { /* POEMS */
	background-image: url('img/neoneo/poems.png');
}

.wrapper-texts { /* TEXTS */
	background-image: url('img/neoneo/texts.png');
}

.wrapper404 { /* 404 wrapper */
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: transparent;
	min-height: 72vh;
}

.wrapper_psa { /* unique wrapper + b.i. for special pages */
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 740px;
	height: 620px;
    background-repeat: no-repeat;
    background-size: auto auto;
    margin: 0 auto;
    background-position: 0px 200px;
	background-image: url('img/neoneo/psa.png');
}

.wrapper_guestbook { /* unique wrapper + b.i. for guestbook page */
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 720px;
	height: 700px;
    background-repeat: no-repeat;
    background-size: auto auto;
    margin: 0 auto;
    background-position: 0px 80px;
	background-image: url('img/neoneo/guestbook.png');
}


#navbar {
	position: absolute;
	top: 97px;
	left: 90px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	height: 49px;
	width: 886px;
	margin-bottom: 4px;
}

#content { /* THE container */
	position: absolute;
	top: 150px;
	left: 288px;
	display: flex;
	flex-direction: column;
	width: 683px;
	height: 500px;
	margin-left: 4px;
	background-image: url('img/bg1.png');
	background-color: #0d0d0d;
	text-align: left;
	overflow-y: auto;
	overflow-x: hidden;
}

#content_header { /* the header segment */
	flex: 0;
	background-image: url('img/bg2.png');
}

#maindiv { /* main container for content */
	flex: 1;
	width: 624px;
	padding-top: 11px;
	padding-left: 12px;
	padding-right: 20px;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-gutter: stable both edges;
}

#title { /* page title */
	padding-left: 12px;
	padding-bottom: 0px;
}

#navpanel { /* navigation under the title*/
	padding-left: 12px;
	margin-bottom: 9px;
}


#sidebar {  /* container on the left */
	position: absolute;
	top: 150px;
	left: 90px;
	display: flex;
	flex-direction: column;
	width: 198px;
	height: 500px;
	background-image: url('img/bg1.png');
	background-color: #0d0d0d;
	font-size: 14;
}

#sidebar_header { /* the header segment */
	flex: 0;
	background-image: url('img/bg2.png');
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 12px;
}

#sidebar_list { /* navigation list, often scrollable */
	flex: 1;
	overflow-y: scroll;
	overflow-x: hidden;
	padding-left: 12px;
	padding-right: 9px;
}

#psa { /* container for special pages */
	position: absolute;
	top: 245px;
	left: 45px;
	display: flex;
	flex-direction: column;
	height: 250px;
	width: 650px;
	background-image: url('img/bg2.png');
	background-color: #0d0d0d;
}

#guestbook { /* containter for the guestbook page */
	position: absolute;
	top: 125px;
	left: 45px;
	display: flex;
	flex-direction: column;
	height: 500px;
	width: 630px;
}

#gstbk { /* maindiv analogue for the guestbook container */
	flex: 1;
	width: 630px;
	height: 445px;
	background-image: url('img/bg1.png');
	background-color: #0d0d0d;
	overflow-y: hidden;
	overflow-x: hidden;
	scrollbar-gutter: stable both edges;
}

#footer { /* footer (invisible) */
	height: 10px;
	margin-top: 0px;
	display: flex;
	background-color: transparent;
}