/* 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: 'Amarante';
  src: url('https://madsmadramblings.neocities.org/Fonts/Amarante-Regular.ttf') format("truetype");
}

@font-face {
  font-family: 'Amatic';
  src: url('https://madsmadramblings.neocities.org/Fonts/AmaticSC-Regular.ttf') format("truetype");
}

@font-face {
  font-family: 'DotGothic';
  src: url('https://madsmadramblings.neocities.org/Fonts/DotGothic16-Regular.ttf') format("truetype");
}

@font-face {
  font-family: 'Honk';
  src: url('https://madsmadramblings.neocities.org/Fonts/Honk-Regular-VariableFont_MORF,SHLN.ttf') format("truetype");
}

@font-face {
  font-family: 'KalniaExtraLight';
  src: url('https://madsmadramblings.neocities.org/Fonts/KalniaGlaze-ExtraLight.ttf') format("truetype");
}

@font-face {
  font-family: 'KalniaLight';
  src: url('https://madsmadramblings.neocities.org/Fonts/KalniaGlaze-Light.ttf') format("truetype");
}

@font-face {
  font-family: 'KalniaThin';
  src: url('https://madsmadramblings.neocities.org/Fonts/KalniaGlaze-Thin.ttf') format("truetype");
}

@font-face {
  font-family: 'PhilosopherRegular';
  src: url('https://madsmadramblings.neocities.org/Fonts/Philosopher-Regular.ttf') format("truetype");
}

@font-face {
  font-family: 'RockSalt';
  src: url('https://madsmadramblings.neocities.org/Fonts/RockSalt-Regular.ttf') format("truetype");
}


body {
  background-color: white;
  color: black;
  font-family: Arial;
  font-size: 17px
}

.Amarante {
  font-family: Amarante;
}

.Amatic {
  font-family: Amatic;
}

.DotGothic {
  font-family: DotGothic;
}

.Honk {
  font-family: Honk;
}

.KalniaExtraLight {
  font-family: KalniaExtraLight;
}

.KalniaLight {
  font-family: KalniaLight;
}

.KalniaThin {
  font-family: KalniaThin;
}

.PhilosopherRegular {
  font-family: PhilosopherRegular;
}

.RockSalt {
  font-family: RockSalt;
}


h1 {font-size: 60px;}
p {text-align: justify}



