a {
    color: var(--midbrown);
}

::selection {
    color: var(--lightgreen);
    background-color: transparent;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
}

:root {
	--lightgreen: #c2e0c1;
	--maintext: #8e6559;
	--midgreen: #84b085;
}

body {
    background-image: url(assets/backgrounds/bg14.gif);
}

h2 {
    font-family: Balsamiq Sans;
    text-align: center;
    line-height: 1.25em;
    text-shadow: 
        0 0 10px #b2c8a6, 
        0 0 10px #b2c8a6, 
        0 0 10px #b2c8a6, 
        0 0 10px #dfe8d8, 
        0 0 10px #dfe8d8, 
        0 0 10px #dfe8d8, 
        0 0 10px #dfe8d8;
    filter: 
        drop-shadow(5px 0 1px white) 
        drop-shadow(0 5px 1px white) 
        drop-shadow(-5px 0 1px white) 
        drop-shadow(0 -5px 1px white) 
        drop-shadow(-0px 1px 1px #81877B);
    color: #3c523c;
    font-weight: normal;
}

strong {
    color: #3c523c;
    text-shadow: 
        0 0 10px #b2c8a6, 
        0 0 10px #b2c8a6, 
        0 0 10px #b2c8a6, 
        0 0 10px #dfe8d8, 
        0 0 10px #dfe8d8, 
        0 0 10px #dfe8d8, 
        0 0 10px #dfe8d8;
    font-size: 14px;
    font-family: Balsamiq Sans;
}

b {
    color: var(--midgreen);
}

a:hover {
  font-stretch: ultra-condensed;
}

#flex {
	max-width: 70%;
	display: flex;
    margin-top: 20px;
    z-index: -4;
}

#left {
    background: white;
    box-shadow: 0px -2px 7px 16px white;
    background-size: 150px;
	width: 55%;
	padding: 5px;
	margin-left: 5px;
}

#right {
	width: 45%;
	margin: auto;
	height: 100%;
	margin-left: 7px;
    margin-top: 170px;
    z-index: 1;
}

#left p {
	font-family: Balsamiq Sans;
	font-size: 13px;
	color: var(--maintext);
}

#right p {
    font-family: 'Arial Narrow';
    font-size: 13px;
    color: var(--maintext);
}

#ceiling {
    width: 100%;
	border-bottom: 1px solid var(--lightbrown);
	padding: 5px;
	font-family: Balsamiq Sans;
	font-size: 12px;
	font-stretch: ultra-condensed;
    background: white;
    z-index: 100;
    position: fixed;
    top: 0;
}

.right-border {
    border-width: 7px; 
    border-style: solid;
    border-image: url(assets/media/border2.gif) 7 fill round;
    padding: 5px;
    display: flex;
}

.right-outer {
    border-radius: 10px;
    border: 1px dashed var(--lightyellow);
    background: url(assets/backgrounds/bg13.gif);
    height: fit-content;
    width: fit-content;
    padding: 7px;
}

.right-boxed {
	background: white;
    border-radius: 10px;
	padding: 5px;
	padding-top: 0;
	overflow-y: scroll;
    height: 120px;
    width: 60%;
    background: white;
    margin: 15px;
}

.right-boxed-img {
    width: 40%;
    height: 95%;
    margin: 5px;
    font-family: Balsamiq Sans;
    font-size: 13px;
    color: var(--maintext);
}

.right-boxed-img img { /* totally not confusing */
    margin-top: 42px;
    width: 100%;
    height: 100%;
}

.left-rows {
	display: flex;
	margin: 5px;
	padding: 0;
    flex-wrap: nowrap;
    overflow-y: auto;
}

.left-boxed {
	width: 28%;
	border-radius: 5px;
	border: 1px solid var(--midgreen);
	margin: 3px;
	padding: 5px;
	font-size: 12px;
	font-family: 'Arial Narrow';
    background: white;
}

.left-boxed img {
    width: 133px;
    border: 1px solid var(--midgreen);
    filter: saturate(0%);
    transition: .25s ease-out;
}
  
.left-boxed img:hover {
    filter: saturate(100%);
    transition: .25s ease-in;
}

.recents-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-y: auto;
}

.recents-row .left-boxed {
    width: 25%;
}

.recents-row .left-boxed img {
    width: 80px;
    height: 110px;
}

.date {
    font-size: 10px;
    font-style: italic;
    color: var(--midbrown);
    text-align: right;
    font-family: 'Arial Narrow';
    margin: 2px;
}

.month {
    font-size: 14px;
    font-family: Balsamiq Sans;
    margin: 5px;
    color: var(--midbrown);
}

li {
    transition: clip-path 275ms ease;
    list-style: " ☆ " outside;
    margin-top: 5px;
}

li:hover {
    cursor: pointer, important;
}

li:hover span::before, li:focus span::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

li span {
    position: relative;
    display: inline-block;
}

li span::before {
    position: absolute;
    content: attr(data-content);
    text-decoration: underline;
    clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
    transition: clip-path 275ms ease;
}

#games-stuff {
    width: 280px;
    border: 10px solid transparent;
    box-sizing: border-box;
    border-image: url(assets/media/border.png) 50 round;
    border-radius: 10px;
    background: white;
    padding: 10px;
    height: 300px;
    position: absolute;
    left: 940px;
    top: 215px;
}

#games-inner {
    height: 100%;
    overflow-y: scroll;
    background: white;
    font-family: Balsamiq Sans;
    font-size: 13px;
    padding: 5px;
}

#games-inner img {
    width: 200px;
    margin: 3px;
}

#filler {
    position: absolute;
    top: 3px;
    left: 1000px;
    rotate: -20deg;
}

#divider {
    position: absolute; 
    top: -120px;
    right: 220px;
}

#vine {
    position: absolute;
    top: -160px;
    left: 865px;
    width: 250px;
}

#hehe {
    position: absolute;
    top: 400px;
    left: 440px;
    width: 240px;
    rotate: -20deg;
}

.disk {
    object-fit: cover;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-name: spin;
    animation-timing-function: linear;
    position: absolute;
    left: 510px;
    top: 40px;
    width: 150px;
}

@keyframes spin {
    from { transform: rotate(0deg) }
    to { transform: rotate(360deg) }
}  

#s-m-t-tooltip {
	background: white;
	border-radius: 10px;
	color: var(--midbrown);
	font-family: Balsamiq Sans;
	font-size: 12px;
	border: 2px double var(--midgreen);
	max-width: 200px;
	text-align: justify;
	z-index: 9999;
	margin: 20px;
    margin-bottom: 5px;
    margin-right: 10px;
	padding: 5px;
	word-break: normal;
}

.help {
    display: inline-block;
    width: 370px;
    margin-top: 5px;
    padding: 10px;
}

.blorb {
    width: 60%;
    float: right;
    background: white;
    border: 1px dotted var(--midgreen);
    border-radius: 10px 5px;
    padding: 0 10px;
}

.scrollblorb {
    height: 130px;
    overflow-y: scroll;
    margin-bottom: 5px;
    padding: 0;
}

.scrollblorb img {
    width: 29%;
    margin-right: 1px;
    margin-bottom: 2px;
    border: 1px solid var(--lightgreen);
    border-left: 3px solid var(--lightgreen);
    border-bottom: 3px solid var(--lightgreen);
    border-radius: 5px;
}