/*
===============================================
୨୧ LAYOUT COLORS
-----------------------------------------------
₊˚⊹⁠ BACKGROUND

outer: #fffdff
back: #fff6ff
main: #ffffff
highlight: #fff1ff

-----------------------------------------------
₊˚⊹ FONT

main: #654b92
highlight: #e95dd6
title: #f299e3
link: #6898ff
s: #cabfdb

-----------------------------------------------
₊˚⊹ OTHER

gradient: #fffdff, #ffddf8 30%, #fff6ff
selection text: #fff1ff

===============================================
*/

/* Start https://www.cursors-4u.com */ * {cursor: url(https://cur.cursors-4u.net/food/foo-6/foo507.ani), url(https://cur.cursors-4u.net/food/foo-6/foo507.png), auto !important;} /* End https://www.cursors-4u.com */
/*
div, header, main, footer, aside, nav {
  border: solid 1px blue !important; 
}
*/

.test-colors {
  color: #ffffff;
}

* {
  box-sizing: border-box;
}

p, h1, h2, h3, h4, li {
  margin: 0px;
}

h1, h2, h3, h4 {
  font-size: 16px;
}

h1 {
  font-size: 22px;
  border-bottom: dashed 1px #b0ccff;
  margin-top: 15px;
  color: #ffffff;
  paint-order: stroke fill;
  -webkit-text-stroke: 3px #b0ccff;
  margin-bottom: 10px;
  padding-bottom: 2px;
}

@font-face {
  font-family: Unifont;
  src: url(assets/font/PixelOperator.ttf);
  font-weight: normal;
}

@font-face {
  font-family: Unifont;
  src: url(assets/font/Pixellari.ttf);
  font-weight: bold;
}

@font-face {
  font-family: RainyHearts;
  src: url(assets/font/rainyhearts.ttf);
  font-weight: normal;
}

ul {
  list-style: square inside url("assets/index-assets/blue-bullet.png");
  margin: 0;
  padding: 5px;
}

li {
  margin-bottom: 5px;
}

html, button {
  font-family: Unifont;
  font-size: 16px;
  color: #6c71af;
}

/**/
html, body {
  height: 99%;
  overflow: hidden;
}

body {
  background: url(assets/art/blue-pattern.png);
}

button, .button {
  display: block;
  text-decoration: none;
  color: #6c71af;
  width: 100%;
  text-align: left;
  padding: 5px;
  background: linear-gradient(to right, #ffffff00 50%, #b0ccff8a);
  border: solid 1px #b0ccff;
  border-radius: 5px;
  transition: margin-left 0.3s;
  margin-bottom: 5px;
}

button:hover, .button:hover {
  background: linear-gradient(to right, #ffffff 50%, #e3f3ff);
  color: #b0ccff;
  margin-left: 5px;
}

.container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid {
  height: 700px;
  width: 1000px;
  grid-template-columns: 250px 1fr;
  display: grid;
}

main {
  height: 100%;
  background: #ffffff;
  padding: 15px;
  border-radius: 0 7px 7px 0;
  border: double 3px #b0ccff;
  border-left: solid 1px #b0ccff;
  overflow-y: auto;
  overflow-x: hidden;
}

aside {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 15px;
  border-radius: 7px 0 0 7px;
  background: #eff8ff;
  border: double 3px #b0ccff;
  border-right: none;
}

img {
  border: solid 5px #eff8ff;
  outline: solid 1px #b0ccff;
  display: block;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
  
}

.image {
  position: relative;
  transition: transform 0.25s ease-in-out;
}

.image:hover {
  transform: rotate(3deg);
}

.image div {
  position: absolute;
  bottom: 5px;
  left: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.image div p {
  background: #eff8ff;
  border: solid 1px #b0ccff;
  border-bottom: none;
  border-left: none;
  padding: 3px 5px 3px 5px;
  border-top-right-radius: 5px;
}

.gallery {
  /*display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 10px;
  row-gap: 20px;*/
  column-count: 4;
  gap: 10px;
}

.callout {
  margin-top: 10px;
  margin-bottom: 15px;
  padding: 10px;
  background: linear-gradient(to right, #ffffff00 50%, #b0ccff8a);
  border: solid 1px #b0ccff;
  border-radius: 5px;
}

.callout h3 {
  margin-bottom: 5px;
}

.showocs {
  display: block;
}

/* 
========================================
  SCROLLBAR 
========================================
*/

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #ffffff;
  border-left: dashed 1px #b0ccff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: linear-gradient(#eff8ff, #b0ccff8a);
  border-radius: 10px;
  border: solid 1px #b0ccff;
  border-right: none;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b0ccff8a;
}

::-moz-selection { /* Code for Firefox */
  color: #ffffff;
  background: #b0ccff;
}

::selection {
  color: #ffffff;
  background: #b0ccff;
}