/* === Font Imports === */
/* ===== System Level ===== */
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
@font-face { font-family: 'dt'; src: url("/assets/fonts/undertale/determination.ttf") format("truetype"); }
@font-face { font-family: 'buttons'; src: url("/assets/fonts/undertale/mercy.ttf") format("truetype"); }
@font-face { font-family: 'deltarune'; src: url("/assets/fonts/deltarune/deltarune.ttf") format("truetype"); }
@font-face { font-family: 'operator'; src: url("/assets/fonts/deltarune/newsletter-font.ttf") format("truetype"); }

/* ===== Character Fonts ===== */
@font-face { font-family: 'sans'; src: url("/assets/fonts/undertale/pixel-sans.ttf") format("truetype"); }
@font-face { font-family: 'papyrus'; src: url("/assets/fonts/undertale/pixel-papyrus.ttf") format("truetype"); }
@font-face { font-family: 'winging-my-ding'; src: url("/assets/fonts/undertale/pixel-wingdings.ttf") format("truetype"); }

/* ===== Color Variables ===== */
:root {
  --bfriend: #D635D9; /* Bfriend's SOUL color. */
  --gfriend: red; /* Gfriend's SOUL color. */
  --pico: #FF952E; /* Pico's SOUL color. */
}

/* ===== Universal Selector ===== */
* {
  cursor: url(/assets/images/cursors/bfriend-cursor.png), auto;
}

* a {
  cursor: url(/assets/images/cursors/bfriend-cursor-hover.png), auto;
}

/* HARLEY: This just makes the links follow the Undertale selection menus */
* a {
  text-decoration: none;
  color: yellow;
}

/* ===== MAIN SELECTORS ===== */
body {
  background-color: black;
}

h1 {
  font-smooth: never; /* HARLEY: Apparently, this is experimental?? I don't know. I'm trying it, though! */
  
  color: white;
  font-family: 'dt', Helvetica, sans-serif, Arial;
  font-size: 2em;
  
  font-weight: normal;
  
  margin-left: auto;
  margin-right: auto;
  
  text-align: center;
}

h2 {
  font-smooth: never; /* HARLEY: Apparently, this is experimental?? I don't know. I'm trying it, though! */
  
  color: white;
  font-family: 'dt', Helvetica, sans-serif, Arial;
  font-size: 1.4em;
  font-weight: normal;
  
  margin-left: auto;
  margin-right: auto;
  
  text-align: center;
}

h3 {
  font-smooth: never; /* HARLEY: Apparently, this is experimental?? I don't know. I'm trying it, though! */
  
  color: white;
  font-family: 'deltarune', Helvetica, sans-serif, Arial;
  font-size: 3em;
  
  font-weight: normal;
  
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  margin-top: 0;
  
  text-align: center;
}

p {
  font-smooth: never; /* HARLEY: Apparently, this is experimental?? I don't know. I'm trying it, though! */
  
  font-size: 1.5em;
  font-family: 'dt', Helvetica, sans-serif, Arial;
  
  color: white;
  
  text-align: center;
  
  max-width: 50ch;
  
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}

img {
  height: auto;
  max-width: 100%;
}

audio {
  display: block;
  margin-left: auto; margin-right: auto;
}

/* ===== CLASSES ===== */


/* ===== IDs ===== */
#top-header1 {
  margin-top: 30px;
}

#top-header2 {
  font-size: 1.7em;
  margin-top: -0.5em;
  margin-bottom: 1em;
}

#lastInList {
  margin-bottom: 45px;
}

/* ===== RESPONSIVENESS 'N SHIT ===== */
@media screen and (max-width: 480px) {

}