html * {
  cursor: url("https://solpaan.neocities.org/nat678.png"), auto;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  font-family: "IM Fell DW Pica", "Times New Roman";
  font-size: 32px;
  font-style: italic;
  font-weight: lighter;
}

h2 {
  font-family: "IM Fell DW Pica", "Times New Roman";
  font-size: 24px;
  font-weight: lighter;
}

body {
  background-color: white;
  background-image: url("");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: black;
  font-family: "Space Mono", "Geist Mono", "DM Mono", monospace;
  font-size: 10px;
  image-rendering: pixelated;
}

div {
  display: block;
  unicode-bidi: isolate;
}

.page-wrapper {
  width: 1030px;
  padding: 4rem 3rem;
  margin: 0 auto;
}

.container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  grid-template-rows: repeat(6, auto);
  gap: 10px;
}

.item {
  padding: 20px 40px;
  font-family: "Space Mono", "Geist Mono", "DM Mono", monospace;
  font-size: 10px;
  color: black;
  background-color: #fff;
  border: 2px solid #000;
  box-sizing: border-box;
  box-shadow: 2px 2px #5b3e22;
}

.item-pic {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding: 0;
  overflow: hidden;
  image-rendering: auto;
  align-items: center;
}

.item-intro {
  grid-column: 2 / 5;
  grid-row: 1 / 2; 
}

a:link {
  color: gray;
  text-decoration: none;
  cursor: url("https://solpaan.neocities.org/nat709.png"), auto;
}

a:visited {
  color: #5E5E5E;
  text-decoration: none;
}

a:active {
  color: gray;
}

a:hover {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  color: #A9DE50;
}

input:focus, textarea:focus {
  background: #eee;
}

::selection {
  background-color: #A9DE50;
  color: white;
}