* {
  box-sizing: border-box;
}

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

@font-face {
  font-family: "Mario64";
  src: url("../fonts/Mario64.ttf")format("truetype");
}

:root {
  background: #848484 url(../images/greydient.png);
  background-size: contain;
	background-attachment: fixed;
  background-position: bottom;
	font-family: "Rosarivo";
  color: white;
  text-align: center;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  cursor: url("../images/starcursorA.png"), auto;
}

body {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 15px;
  gap: 5px;
  width: 100%;
  height: 100%;
}

h1 {
  color: white;
  letter-spacing: 2px;
  font-size: 26pt;
  margin: 0;
  padding: 0;
  text-shadow: white 1px 0 10px;
}

h1 a, h1 a:link, h1 a:visited, h1 a:hover {
  font-family: "Mario64";
  font-size: 18pt;
  text-decoration: none;
  color: #dedede;
  margin-left: -20px;
}

h2 {
  color: white;
  letter-spacing: 2px;
  font-size: 18pt;
  margin: 0;
  padding: 0;
  text-shadow: white 1px 0 10px;
}

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: #f8f8f8;
  text-decoration: underline solid rgba(255, 255, 255, 0.5);
  text-underline-offset: 3px;
}

a:hover {
  cursor: url("../images/starcursorB.png"), auto;
}

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

p {
  margin: 8px 0;
}

ul {
  list-style-image: url("../images/deviantart/emoticons/bulletwhite.png");
  list-style-position: inside;
  font-size: 13pt;
  text-align: left;
  line-height: 30px;
  margin-left: 20px;
}

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

.mainbox {
  width: 95%;
  max-width: 800px;
  min-width: 200px;
  color: #dedede;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  padding: 20px;
  margin: 5px;
  font-size: 13pt;
}

.bottomspacewtf {
  display: block;
  width: 50px;
  height: 50px;
  margin: 50px;
}

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

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

*::-webkit-scrollbar-track { /* background of the bar */
  border-radius: 2px;
  background-color: #484848;
  border: solid white 6px;
}

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

*::-webkit-scrollbar-thumb { /* the actual scroll bar */
  border-radius: 2px;
  background-color: #484848;
  border: solid white 2px;
}

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

/* ================================================== MOBILE ZONE ================================================== */

@media screen and (orientation: portrait), (max-width: 800px) {

:root {
  margin-left: -10px;
}}