/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
  font-family: XanhMonoItalic;
  src: url(https://uncaughtinpromise.neocities.org/assets/fonts/Xanh_Mono/XanhMono-Italic.ttf);
}

@font-face {
  font-family: XanhMono;
  src: url(https://uncaughtinpromise.neocities.org/assets/fonts/Xanh_Mono/XanhMono-Regular.ttf);
}

@font-face {
  font-family: JacquardChart;
  src: url(https://uncaughtinpromise.neocities.org/assets/fonts/Jacquard_12_Charted/Jacquard12Charted-Regular.ttf);
}

@font-face {
  font-family: Jacquard;
  src: url(https://uncaughtinpromise.neocities.org/assets/fonts/Jacquard_12/Jacquard12-Regular.ttf);
}

@font-face {
  font-family: BluuNext-Titling;
  src: url(https://uncaughtinpromise.neocities.org/assets/fonts/BluuNext-Titling.otf);
}

@font-face {
  font-family: MrPixel;
  src: url(https://uncaughtinpromise.neocities.org/assets/fonts/Mister%20Pixel%20Regular.otf);
}

@font-face {
  font-family: Rezin;
  src: url(https://uncaughtinpromise.neocities.org/assets/fonts/Rezin.TTF);
}

@font-face {
  font-family: Swan;
  src: url(https://uncaughtinpromise.neocities.org/assets/fonts/SwankStd.otf);
}

@font-face {
  font-family: Skyline;
  src: url(https://uncaughtinpromise.neocities.org/assets/fonts/OPTICorvinus%20Skyline%20Regular.otf);
}

:root { overscroll-behavior: none; }

html, body {
    cursor: url('https://uncaughtinpromise.neocities.org/assets/cursor-uip.png'), auto;
}

body {
  margin: 0px;
  padding: 0px;
  background-image: url("assets/homepage-background-tile.jpg");
  background-repeat: repeat;
  width: 100%;
  font-family: XanhMono, Courier, monospace;
  color: #c4c4d4;
  scrollbar-color: #c4c4d4 #36365b;
  scrollbar-width: thin;
}

 /* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #36365b;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #c4c4d4;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #c4c4d4;
} 

p {
  margin: 0px;
  padding: 0px;
  font-size: 13pt;
}

ul, li {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

h1, h2, h3, h4, summary span {
  color: #c4c4d4;
  font-family: Jacquard, Courier, monospace;
  font-weight: normal;
  margin: 0px;
  padding: 0px;
}

h1 {
  font-size: 45pt;
}

h2, summary span {
  font-size: 25pt;
}

summary {
  font-size: 15pt;
}

summary:hover {
  cursor: pointer;
}

a {
  color: #c4c4d4;
  text-decoration: none;
}
a:hover {
  color: #9898af;
  text-decoration: none;
}

hr {
  border: none;
  border-bottom: 2px dotted #36365b;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0px;
}

::selection {
  color: #36365b;
  background: #c4c4d4;
}

.linkGem {
  float: right;
  height: 25px;
  margin-top: 11px;
  margin-left: 10px;
  padding-left: 0px;
  vertical-align: middle;
}

.imgTitle {
  z-index: 10000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  width: 250px;
}