/* 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: Narrator;
  src: url('https://slay-the-princess-wiki.neocities.org/fonts/KelmscottRomanNF.ttf');
}
@font-face {
  font-family: SoftPrincess;
  src: url('https://slay-the-princess-wiki.neocities.org/fonts/AmaticSC-Regular.ttf');
}
@font-face {
  font-family: SoftPrincess;
  src: url('https://slay-the-princess-wiki.neocities.org/fonts/AmaticSC-Bold.ttf');
  font-weight: bold;
}
@font-face {
  font-family: HarshPrincess;
  src: url('https://slay-the-princess-wiki.neocities.org/fonts/EastSeaDokdo-Regular.ttf');
}

html {
  background-image: url('https://slay-the-princess-wiki.neocities.org/images/lq-woods-bg.png');
  background-size: 100%;
}

body {
  background: none;
  margin: 0;
  color: white;
}

#header {
  height: 40px;
  background-color: #1d1d1d;
  width: 100%;
  margin: 0;
  position: sticky;
  top: 0;
}

#header p {
  padding: 0;
  padding-top: 10px;
  margin: 0;
  margin-right: 1em;
  text-align: right;
}

#content {
  margin: 3em;
}

#navigation {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(1, 1fr);
  width: 100%;
}

.navimg {
  grid-row: span 2 / span 2;
  margin-right: 1em;
  display: flex;
}

.navimg img {
  width:250px;
  margin-right: 1em;
  align-self: flex-end;
}

.title {
   grid-column: span 4 / span 4;
   display: flex;
}

.title h2 {
  align-self: flex-end;
}

.navlinks {
  grid-column: span 4 / span 4;
  grid-column-start: 2;
  grid-row-start: 2;
}

.navlinks ul {
  display: flex;
  padding: 0;
  margin: 0;
  gap: 4em;
  list-style-type: none;
  justify-content: flex-start;
}

.navlinks li {
  font-family: Arial;
  font-size: 1.25em;
}



#main {
  background: rgba(255, 255, 255, 0.9);
  border: solid 2px white;
  padding: 1.5em;
  margin-top: 2em;
}

h1 {font-size:2.5em; margin:0.4em 0;}
h2 {font-size:2.25em; margin:0.4em 0;}
h3 {font-size:2em; margin:0.4em 0;}
h4 {font-size:1.75em; margin:0.4em 0;}
h5 {font-size:1.5em; margin:0.4em 0;}
h6 {font-size:1.25em; margin:0.4em 0;}

.narrator {font-family:Narrator;}
.soft {font-family:SoftPrincess;}
.harsh {font-family:HarshPrincess;}
.arial {font-family: Arial;}

p {
  font-family: Arial;
  font-size:1em;
}

a {
  color: #ec7f8d;
  text-decoration: none;
}









