
:root {
    --text: rgb(44, 62, 87);
    --border: #8e999f;
    --bg: rgba(152, 179, 179, 0.714);
    --gradientTop: rgb(218, 228, 234);
    --gradientBottom: rgba(240, 239, 239, 0.8);
    --darkblue: #04136b;
}

::selection {
    background: #1b2036;
    color: white;
  }

/* Start https://www.cursors-4u.com */ * {cursor: url(https://cur.cursors-4u.net/cursors/cur-2/cur188.cur), auto !important;} /* End https://www.cursors-4u.com */

* { 
box-sizing: border-box;
}
body {
padding: 10px;
font-family: 'MS PGothic', sans-serif;
color: var(--text);
background-color: #1b2036;
}

.container {
width: 650px;
height: 720px;
margin: 5px auto 12px auto;
border: 6px ridge var(--border);
border-radius: 5px;
padding: 5px;
gap: 5px;
display: flex;
flex-wrap: wrap;
background-color: var(--darkblue);

}

iframe {
    width: 100%;
    height: 500px;
    border: 0;
  }


/*column widths */
.index { width: 170px;
overflow-y: scroll;
}

.entries { width: 445px;
height: 575px;

}

#infobox {
    display: none; 
    position: absolute; 
    top: 450px !important;
    left: 860px;
    max-width: 200px;
    font-family: inherit;
    text-align: center; 
    z-index: 100;
    margin: 30px 15px 7px 12px;
    padding: 5px;
    border-radius: 8px;
    border: dotted #4298c7;
    background: #a5d4ee; 
    }

    #infoimage:hover {
        filter: blur(2px) drop-shadow(1px 1px 0 var(--darkblue)) 
        drop-shadow(-1px 1px 0 var(--darkblue))
        drop-shadow(1px -1px 1px var(--darkblue)) 
        drop-shadow(-1px -1px 1px var(--darkblue));
        transition-duration: 200ms;
        animation: none;
    }


#infoimage {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    filter: drop-shadow(1px 1px 0 var(--darkblue)) 
  drop-shadow(-1px 1px 0 var(--darkblue))
  drop-shadow(0 1px 0 var(--darkblue)) 
  drop-shadow(0 -1px 0 var(--darkblue)) 
  drop-shadow(0 1px 1px var(--darkblue)) 
  drop-shadow(0 -1px 1px var(--darkblue)) 
  drop-shadow(1px -1px 1px var(--darkblue)) 
  drop-shadow(-1px -1px 1px var(--darkblue));
  


}

@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 3px); }
    100%   { transform: translate(0, -0px); }    
}

        

.entry {
    padding:8px;
    border: none;
    box-shadow: blur;
    box-shadow: 0px 0px 5px #5a6278;
    border-radius:4px;
    overflow-y:scroll;
    background: white;
    max-height:75px;
    max-width: 430px;
    font-size: 13.5px
    }

header {
background-image: url(https://files.catbox.moe/rmbdop.png);
background-size: cover;
background-position: center;
width: 100%;
height: 120px; 
border: 2px ridge var(--border);
border-radius: 5px;
position: relative;

}
header span {
font-family: 'amsterdam graffiti';
font-size: 3.5rem;
position: absolute;
letter-spacing: 5px;
bottom: 0;
margin: 10px;
font-weight: bold;
color: white;
}

section {
border: 2px ridge var(--border);
border-radius: 5px;
background-color: rgb(224, 224, 224);
padding: 5px;
}


h1, h2, h3, h4, h5, h6, p  { 
margin: 5px;
line-height: 1.2;
}
h1 { 
font-size: 1.4rem;
letter-spacing: 2px;
font-weight: normal;
text-align: center;
border-bottom: 2px ridge var(--border);
padding-bottom: 5px;
}
h2 { 
color: white;
font-size: 1.25rem;
font-weight: normal;
text-align: center;
text-shadow: -1px 1px var(--text), 1px 1px var(--text), -1px -1px var(--text), 1px -1px var(--text), var(--text) 0 0 3px;
}
h3 { 
color: var(--text);
font-size: 1.1rem;
}

h3:before{
    content: "> "
    }

h4 { 
font-size: 1rem;
color: var(--accent);
padding-left: 12px;
}

a {
    color: var(--darkblue);
}

a:hover, a:focus {
font-style: italic;
}

button {
	background: #a5d4ee;
	border: dotted #4298c7;
	border-radius: 8px;
	font-family: inherit;
	font-size: inherit;
}
button:hover {
	background: #0526a1;
    color: white;
    border: dotted #a5d4ee;
}

#s-m-t-tooltip {
	max-width: 300px;
	font-family: inherit;
	text-align: center;
	z-index: 100;
	margin: 30px 15px 7px 12px;
	padding: 5px;
	border-radius: 8px;
	border: dotted #4298c7;
	background: #a5d4ee;
}

div:hover .hoverBox {
    display: block;
  }