/* ========== Load IM Fell English Font ========== */
@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English&display=swap');

/* ========== Global Styles ========== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'IM Fell English', serif;
  line-height: 1.6;
  color: #ECECEB;
  background: #080808 url('https://mordictionary.neocities.org/Images/vhs%20book(1)(1).gif') repeat;
  background-size: 250px;
  margin: 0;
  padding: 20px;
  text-align: center;
}

/* ========== Headings ========== */
h4 {
  font-size: 1.5em;
  font-weight: bold;
  color: #ECECEB;
  margin: 20px 0 10px;
  font-family: 'IM Fell English', serif;
}

/* ========== Links ========== */
a {
  display: inline-block;
  margin: 10px;
  text-decoration: none;
  color: #BEBEBE;
  transition: color 0.3s ease;
  font-family: 'IM Fell English', serif;
}

a:hover {
  color: #ECECEB;
  text-decoration: underline;
}

/* ========== Images ========== */
img {
  width: 320px;
  height: 160px;
  transition: transform 0.3s ease;
}

a:hover img {
  transform: scale(1.03);
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 6px;
  box-shadow: inset 0 0 6px #1b1b1b;
}
::-webkit-scrollbar-track {
  background-color: #000;
}
/* Firefox */
  scrollbar-width: thin; /* options: auto | thin | none */
  scrollbar-color: #333 #000; /* thumb color, track color */
}
