/* hi there! please credit me @ goldenfreddy.neocities.org if you copy any of the coding here! thanks :) */

* {
  box-sizing: border-box;
  word-break: break-word;
  text-align: center;
}

@font-face {
  font-family: "Squishycat";
  src: url("/fonts/Squishycat.otf")format("opentype");
}

:root {
  background: black url(/images/shadbon.png);
  background-size: cover;
  background-position: top center;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: white;
}

body {
  font-family: "Squishycat";
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row; 
  flex-wrap: wrap; 
  align-content: center;
}

hr {
  border: rgba(255, 255, 255, 0.25) 3px;
  border-style: dashed none none none;
	width: 85%;
	margin: 20px auto;
}

a, a:link, a:visited {
  color: red;
  text-decoration: underline solid rgba(255, 255, 255, 0.5);
  text-underline-offset: 3px;
}

a:hover {
  color: pink;
  font-weight: bold;
  text-decoration: underline solid rgba(255, 255, 255, 0.5);
  text-underline-offset: 3px;
}

u {
  text-decoration: underline dashed rgba(255, 255, 255, 0.2);
  text-underline-offset: 2px;
}

br {
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

::selection {
  background: RGBA(255, 50, 50, 0.4);
}

h2 {
  font-size: 50px;
  margin: 0 10px;
}

/* ================================================== main divs ================================================== */

.singlescroll {
  display: block;
  width: 80vw;
  height: 80vh;
  max-width: 950px;
  min-width: 400px;
  max-height: 750px;
  min-height: 100px;
  font-size: 18pt;
  background: rgba(221, 160, 221, 0.6);
  border: dashed #ffd9e2 3px;
  outline: solid #ffd9e2 4px;
  border-radius: 1px;
  padding: 30px;
  overflow-y: auto;
  overflow-x: hidden;
}

.gallery {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  padding: 15px 15%;
  gap: 10px;
  line-height: 30px;
}

/* ================================================== custom scrollbar ================================================== */

*::-webkit-scrollbar { /* size of the bar */
  height: 12px;
  width: 12px;
}

*::-webkit-scrollbar-track { /* background of the bar */
  border-radius: 2px;
  background-color: black;
  border-left: dashed plum 2px;
}

*::-webkit-scrollbar-track:hover, *::-webkit-scrollbar-track:active { /* background extras */
  background-color: black;
}

*::-webkit-scrollbar-thumb { /* the actual scroll bar */
  border-radius: 2px;
  background-color: white;
  border: dashed plum 2px;
  border-right: none;
}

*::-webkit-scrollbar-thumb:hover, *::-webkit-scrollbar-thumb:active { /* the actual scroll bar extras */
  background-color: white;
}