/* biwaqo - 2026 sept.
do not copy/redistribute/use as a base. */

body {
  background-color: whitesmoke;
  color: saddlebrown;
  font-family: arial;
  font-size: 13px;
  text-align: left;
  scroll-behavior: smooth;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-top: 15px;
}

footer {
    display: block;
    text-align: center;
    font-size: 10px;
    margin: 0 auto;
    bottom: 0px;
    position: fixed;
}

body, html, a, a:link, a:active, a:visited, .container, .box, .cubes, .footer, .crt::before {
  cursor: url("/images/cursor_main.png"), auto;
  pointer-events: auto;
}

a:hover, select, .tab button:hover {
  cursor: url("/images/cursor_hover.png"), auto;
  pointer-events: auto;
}

p, span, h1, h2, h3, h5, h6, mark, [contenteditable] {
    cursor: url("/images/cursor_text.png"), auto;
}

/* containers */

.container {
  margin: 0 auto;
  margin-top: 100px;
  padding-bottom: 35px;
  width: 300px;
}

.box {
  margin: 0 auto;
  padding-bottom: 35px;
}

.cubes {
  width: 300px;
  margin: 0 auto;
  margin-top: 5px;
  max-width: 80%;
  padding: 10px;
  padding-top: 10px;
  overflow-x:hidden;
  text-align:left;
  border: 1px dashed orangered;
}


/* links */

a {
  text-decoration: none;
  font-weight: bold;
  color: dodgerblue;
}

a:link, a:active, a:visited {
  color: dodgerblue;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  color: transparent;
  text-shadow: 0px 0px 2px dodgerblue;
}

/* misc */

hr {
  border: none;
  border-top: 1px dashed dodgerblue;
  width: 70%;
}

h5, h6 {
  font-weight: normal;
}


mark {
  background-color: goldenrod;
  color: whitesmoke;
  padding: 2px 5px 2px 5px;
}

mark:hover {
  background-color: dodgerblue;
  color: whitesmoke;
  padding: 2px 5px 2px 5px;
}

blockquote {
 margin:-13px 0 0 10px;
 padding:0 0 0 10px;
 border-left:1px dashed dodgerblue;
 text-align: left;
}

.footer {
  width: 100%;
  align-content: center;
  text-align: center;
  margin-top: 0px;
  padding: 0px;
  background-color: whitesmoke;
  font-size: 10px;
  color: goldenrod;
  box-sizing: border-box;
}


/*selection color*/

/*
::selection {
  color: dodgerblue;
  background: lightskyblue;
  text-shadow:
    1px 0px whitesmoke,
    0px 1px whitesmoke,
    -1px 0px whitesmoke,
    0px -1px whitesmoke;
  display: inline;
}

::-moz-selection {
  color: dodgerblue;
  background: lightskyblue;
  text-shadow:
    1px 0px whitesmoke,
    0px 1px whitesmoke,
    -1px 0px whitesmoke,
    0px -1px whitesmoke;
  display: inline;
} */

img::selection{
  background: transparent;
  color: transparent;
}
img::-moz-selection {
  background: transparent;
  color: transparent;
}
::selection {
  color: transparent;
  text-shadow: 0px 0px 2px lightskyblue;

}
::-moz-selection {
  color: transparent;
  text-shadow: 0px 0px 2px lightskyblue;
}

/* tooltips */

#s-m-t-tooltip{
 position:fixed;
 z-index:9999;
 max-width:170px;
 padding:2px 4px;
 background:goldenrod;
 color: whitesmoke;
 line-height:1.2;
 opacity:0;
 pointer-events:none;
 margin: 24px 14px 7px 12px;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 3px;
  height: 7px;
}

::-webkit-scrollbar-track-piece {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: goldenrod;
  border: 1px solid;
  color: goldenrod;
}

/* gallery */

.preview {
  max-width: 30%;
  height: auto;
  border: solid 2px transparent;
  margin: auto;
}

.preview:hover {
  border-color: orangered;
}

details {
    display: inline;
  }

  details>summary {
    color: dodgerblue;
    display: inline;
    list-style: none;
    text-decoration: underline;
    font-weight:bold;
  }

    summary::marker {
    content: "";
  }

    summary:hover {
    color: orangered;
  }

  /*crt*/
  .crt::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  opacity:0.3;
}

.crt::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}