@font-face {
  font-family: 'IBM Plex Sans';
  src: url(../fonts/ibm-plex-sans-hebrew-latin-400-normal.ttf);
}
@font-face {
  font-family: 'JSL Ancient';
  src: url(../fonts/jancient.ttf);
}
::selection {
  background: rgb(0 0 0 / 20%);
}
header {
  max-width: 900px;
  min-height: 215px;
  overflow: hidden;
  background-image: url(../images/assets/main/header.png);
  background-size: 900px;
}
header img {
  width: 150px;
  float: left;
  margin-top: 80px;
  margin-left: 25px;
  display: block;
  filter: drop-shadow(2px 2px 1px rgb(0 0 0 / 30%));
}
body {
  background-image: url(../images/assets/main/background.png);
  background-repeat: repeat;
  font-family: 'IBM Plex Sans';
  image-rendering: pixelated;
  font-size: 17px;
}
.container {
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff8e1;
  border: 1px solid black;
  box-shadow: 5px 5px 15px 0 rgb(0 0 0 / 30%);
  position: relative;
}
.center {
  min-height: 640px;
}
nav {
  background-color: #331c0c;
  display: flex;
  flex-grow: 1;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 3px 20px;
}
.box {
  font-size: 100%;
  box-sizing: border-box;
  display: flex;
}
.column {
  float: right;
  width: 200px;
  height: 300px;
  background-color: #fff8e1;
  border: 1px solid black;
  margin: 8px 30px;
  text-align: left;
  box-shadow: 3px 3px #7c7e5e59;
}
.column img {
  width: 150px;
  margin: 10px 28px;
}
.me {
  padding: 0 15px;
  font-size: 90%;
}
nav img {
  width: 15px;
  padding-right: 3px;
}
nav a {
  color: #ffe5ac;
  font-weight: bold;
}
nav a:hover{
  color: #ffe5ac;
  text-decoration: underline;
}
nav img {
  width: 15px;
  padding-right: 3px;
}
.directory {
  font-family: monospace;
  font-size: 90%;
  background-color: #fff1d2;
  text-align: left;
  border-bottom: 1px solid black;
  padding: 2px 9px;
}
h1 {
  font-weight: lighter;
  font-size: 130%;
}
h2 {
  font-size: 130%;
  font-weight: lighter;
  text-align: center;
  text-decoration: underline;
  padding: 0 30px;
}
h3 {
  font-size: 120%;
  font-weight: lighter;
  text-align: left;
  text-decoration: underline;
  padding: 0 30px;
}
h4 {
  font-size: 100%;
  font-weight: lighter;
  text-align: left;
  text-decoration: underline;
  padding: 0 30px;
}
p {
  font-size: 100%;
  font-weight: lighter;
  text-align: justify;
  padding: 0 30px;
}
hr {
  height:2px;
  border-width:0;
  color: black;
  background-color: black;
  width: 50%;
}
.row {
  display: flex;
}
.column-content {
  font-size: 100%;
  padding: 0 30px;
  text-align: left;
}
.column-content a:hover {
  color: black;
  text-decoration: underline;
}
.column-content a{
  color: #7a3118;
  text-decoration: none;
}
ul {
  list-style-type: disc;
  padding: 0 16px;
  margin: 0;
}
li {
  text-align: justify;
  padding-bottom: 10px;
}
li::marker {
  content: '✜ ';
  color: #331C0C;
  font-size: 80%;
}
a {
  color: #7a3118;
  text-decoration: none;
}
a:hover {
  color: black;
  text-decoration: underline;
}
.info {
  position: relative;
  overflow: hidden;
}
a:hover.info
{
  text-decoration: none;
}
.info:hover {
  overflow: visible;
}
.hidden-info {
  position: absolute;
  bottom: 40px;
  width: 230px;
  text-align: left;
  border: 1px solid black;
  transform: translate(-50%, 10px);
  background: #fff8e1d8;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
}
.info:hover .hidden-info,
.info:focus-visible .hidden-info {
  opacity: 1;
  transform: translate(-50%, 0);
}
.sitemap {
  font-size: inherit;
  float: right;
  bottom: 15px;
  position: relative;
}
textarea {  
  width: 40px;
  height: 25px;
  font-size: 80%;
  border: 1px solid black;
  background-color: #fff8e1;
  resize: none;
  scrollbar-width: none;
}
footer {
  border-top: 1px solid black;
  padding: 8px;
  font-size: 100%;
  text-align: center;
  background-color: #ffe5ac;
}
footer a {
  color: #7a3118;
  text-decoration: none;
}
footer a:hover {
  color: black;
  text-decoration: underline;
}