/* === 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 {
  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 {
  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 {
  color: white;
  font-family: 'deltarune', Helvetica, sans-serif, Arial;
  font-size: 2em;
  
  font-weight: normal;
  
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  
  text-align: center;
}

p {
  font-size: 1.5em;
  font-family: 'operator', Helvetica, sans-serif, Arial;
  
  color: white;
  
  text-align: left;
  
  max-width: 50ch;
  
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

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

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

/* ===== CLASSES ===== */
.images {
  display: block;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto; 
}

.images-smaller {
  display: block;
  margin-bottom: 30px;
  
  width: 30%; height: auto;

  margin-left: auto;
  margin-right: auto; 
}

.images-smaller-gian {
  image-rendering: pixelated;
  
  width: 20%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ===== RESPONSIVENESS 'N SHIT ===== */
@media screen and (max-width: 480px) {
  .images-smaller {
    display: block;
    margin-bottom: 30px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .images {
    display: block;
    margin-bottom: 30px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}