@font-face {
  font-family: Px437 Cordata PPC-400;
  src: url("/fonts/Px437_Cordata_PPC-400.ttf");
}

@font-face {
  font-family: Ac437 Phoenix BIOS;
  src: url("/fonts/Ac437_Phoenix_BIOS.ttf");
}

* {
  scrollbar-color: #90afe8 white;
  scrollbar-width: thin;
}

body {
  background-image: url("https://wolfrayetlaw.com/imgs/background/furbg1.png");
  background-size: cover;
  background-attachment: fixed;
  image-rendering: pixelated;
  font-family: "Px437 Cordata PPC-400";
}

.container {
    margin-top: 50px;
  display: grid;
  grid-template-rows: 30px 50px auto;
  grid-template-columns: 800px;
  grid-auto-flow: row;
  grid-gap: 10px;
  justify-content: center;
  align-items: center;
}

.header h1 {
font-family: Ac437 Phoenix BIOS;
  color: white;
  background-color: transparent;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -3px 3px 0 #000,
    1px 3px 0 #000;
  filter: drop-shadow(1px 1px 0 #000);
  grid-row: 1 / 1;
  grid-column: 1 / 14;  
}

.nav {
    height: 20px;
background-color: #e0e0e0;
padding: 10px;
border: 4px double black;
  grid-row: 2 / 2;
  grid-column: 1 / 1;  
}

.nav ul {
  text-align: center;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 1em;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 6px;
  justify-content: space-evenly;
}

.nav li a {
  width: 110px;
  display: inline-block;
  background: #ffffff;
  color: #3d4841;
  font-family: Ac437 Phoenix BIOS;
  font-size: small;
  padding: 2px;
  border: 2px solid #3d4841;
  transition: 0.1s;
  text-decoration: none;
  text-shadow: none;
  font-weight: unset;
}

.nav li a:visited {
  color: #3d4841;
}

.nav li a:hover {
  background: #baecff;
  color: #4666a1;
  outline: 3px double #4666a1;
  outline-offset: 1px;
  font-style: unset;
}

.outlinks {
    image-rendering: initial;
    height: auto;
background-color: #e0e0e0;
padding: 10px;
border: 4px double black;
  grid-row: 3 / 3;
  grid-column: 1 / 1;  
}

.outlinks img {
      transition-property: initial;
  transition-duration: initial;
  transition-timing-function: initial;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
}

.outlinks img:hover {
  image-rendering: pixelated;
  transform: scale(1.1);
}

.outlinks h2,
h3 {
    color: #4666a1;
  filter: drop-shadow(3px 2px 0 #b8b8b8);  
 margin-bottom: 5px;
  font-family: Ac437 Phoenix BIOS;
}

.outlinks h3 {
    color: #5a80c7;
}

blockquote {
    margin-left: 0;
    padding: 3px;
    width: 660px;
    border: 1px solid black;
}

a:hover {
    font-style: italic;
    text-decoration: none;
}