/* File: style.css
  Author: wintyr (J Rich)
  Date: 15th June, 2025 
  With heavy referencing from w3schools
  Built from similar scaffolding as the Unseelie Community homepage, also written by J Richards
  All fonts used from Google Fonts */
  
  @import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Permanent+Marker&family=Rock+Salt&family=Alegreya+SC:ital,wght@0,400;0,500;0,700;0,800;0,900;1,400;1,500;1,700;1,800;1,900&family=Alegreya+Sans+SC:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Alegreya:ital,wght@0,400..900;1,400..900&display=swap'); /* Body text, section text, header text. Poetry Title, poetry sans title, poetry serif */

body {
  background-color: dimgrey;
  color: ghostwhite;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 14pt;
}

header {
  margin: 0 auto 0 auto;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: fit-content;
  font-family: "Rock Salt", cursive;
  text-align: center;
  font-size: 20pt;
  color: ghostwhite;
  text-shadow: -2px 2px black;
}

h2 {
  color: ghostwhite;
  font-family: "Permanent Marker", cursive;
  font-size: 21pt;
  text-align: left;
  background-color: maroon;
  padding-left: 2%;
  margin-right: 70%;
}


/* we're at the nav hut
  we're at the link bell
  we're at the combination
  nav hut and link bell */
  
#nav ul {
  margin-left: 0;
  background: rgba(0, 0, 0, 0.5);
  list-style-type: none;
  padding-top: 5px;
  padding-bottom: 9px;
  text-align: center;
  font-family: "Permanent Marker", cursive;
  font-size: 16pt;
  }
  
#nav li {
  display: inline;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 15px;
  margin-right: 15px;
  font-family: "Permanent Marker", cursive;
  font-size: 16pt;
  text-align: center;
  border: 2px solid snow; 
  border-radius: 5px;
  }
  
#nav li:hover {
  background: rgba(0.5, 0.5, 0.5, 0.5);
  }
  
a:link {
  color: lavender;
  text-decoration: none;
  }
  
a:visited {
  color: thistle;
  text-decoration: none;
  }
  
a:hover, a:active {
  color: plum;
  text-decoration: none;
  } 

#content p {
  background-color: dimgrey;
  width: 66%;
  margin-left: auto;
  margin-right: auto;
  }

#ptitle h1 {
  font-family: "Alegreya SC", serif;
  }

#pcontent p {
  margin-left: auto;
  margin-right: auto;
  width: 66%;
  font-family: "Alegreya", serif;
  }
  
#pleft p {
  text-align: left;
  font-family: "Alegreya", serif;
  }
  
#pright p {
  text-align: right;
  font-family: "Alegreya", serif;
  }
  
#pfinale p {
  width: 20%;
  margin-left: auto;
  margin-right: auto;
  font-family: "Alegreya", serif;
  }
  
#pfooter {
  background-color: black;
  height: 50px;
  }  
  
#pfooter p {
  padding: 10px;
  background-color: silver;
  font-family: "Alegreya SC", serif;
  font-size: 10pt;
  color: navy;
  }
  
#pfooter a {
  color: navy;
  text-decoration: none;
  }
#pfooter a:visited {
  color: midnightblue;
  text-decoration: none;
  }
  
#pfooter a:hover {
  color: indigo;
  text-decoration: none;
  }

#pfooter a:visited:hover {
  color: darkslateblue;
  text-decoration: none;
  }

.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

img {
  max-width: 700px;
  }