/* 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: #565656 url("../../images/noel/noelbg.png") repeat-x;
  animation: bgpan 15s linear infinite;
  cursor: url("../../images/starcursorA.png"), auto;
  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(0, 0, 50, 0.25) 3px;
  border-style: dashed none none none;
	width: 85%;
	margin: 20px auto;
}

@keyframes bgpan {
  0% {background-position: -102% 0%;}
  100% {background-position: 100% 0%;}
}

a:link, a:visited {
  color: #ff7247;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 2px;
}

a:hover {
  color: #ffa15e;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: url("../../images/starcursorB.png"), auto;
}

::selection {
  background: RGBA(255, 104, 38, 0.3);
}

.singlescroll {
  display: block;
  width: 85vw;
  height: 80vh;
  max-width: 1000px;
  min-width: 400px;
  max-height: 820px;
  min-height: 100px;
  font-size: 18pt;
  color: #ad4644;
  text-align: center;
  background: linear-gradient(180deg,rgba(255, 254, 217, 1) 0%, rgba(255, 249, 207, 1) 100%);
  border: 6px #ffe88c solid;
  outline: 6px #ffbf00 solid;
  border-radius: 1px;
  padding: 18px 50px;
  overflow-y: auto;
}

.noelgallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  gap: 10px 20px;
  margin-bottom: 18px;
}

.noelgallery img {
  border-radius: 10px;
}

.timerbox {
  display: inline;
  font-family: "Squishycat";
  font-size: inherit;
  color: inherit;
}

#datehere {
  font-family: "Squishycat";
  font-size: inherit;
  color: #ad4644;
}

#timertext {
  font-family: "Squishycat";
  font-size: inherit;
  color: inherit;
}

.titletext {
  font-family: "Squishycat";
  font-size: 35pt;
  font-weight: bold;
  color: #ff5d3d;
  letter-spacing: 2px;
  line-height: 30px;
  margin: -5px 0;
}

/* ================================================== CUSTOM SCROLLBAR ================================================== */

*::-webkit-scrollbar {
  height: 15px;
  width: 15px;
}

*::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #a84632;
  border: 2px dashed #ff7070;
}

*::-webkit-scrollbar-track:hover {
  background-color: #a84632;
}

*::-webkit-scrollbar-track:active {
  background-color: #a84632;
}

*::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #ffbf00;
  border: 2px dashed #f7f7f7;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #ffd042;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #ffe669;
}