 @font-face { 
   font-family: PixelFont; src: url('https://file.garden/ZN_Kso-7dnW-gw63/Neocities/Animaids/FONTS/FIVEFONTSATFREDDYS-REGULAR.TTF')  format('truetype'); 
} 

.title {
  font-family: OCRAM;
  font-size: 30px; 
  color: white;
}

.list_container {
  display: flex;
  background-color: black;
  flex: 1;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-items: space-evenly;
  width: 800px;
  padding: 5px;
  border: 0px solid var(--clr-light);
  margin: 0px;
  gap: 10px 10px;
}

.label{
  
  display:flex;
  width:100%;
  height: 50px;
  background-color: black;
  
}

.header{
  
  display: flex;
  flex-direction: column;
  align-items: center;
  width:100%;
  height: 120px;
  background-color: black;
  
}



.cat_list{
  display: flex;
  flex-direction: row;
  border: 2px solid var(--clr-light);
  width: auto;
  flex-wrap: wrap;
  gap: 4px 4px;
  padding: 4px;
}

.cat_title{
  font-family:OCRAM;
  font-size: 20px;
  color: var(--clr-light);
}

.icon{
  display:grid;
  border: 2px solid var(--clr-light);
  width: 100px;
  height: 128px;
  background-repeat: no-repeat;
  background-size: 128px 128px;
  background-origin: border-box;
  background-position-x: center;
  justify-items: flex-end;
  align-items: flex-end;
  background-color: black;
  
  
}

.icon:hover{
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  background-blend-mode: multiply
}

.icon_text{
  font-family:PixelFont;
  font-size: 16px;
  color: white;
  margin: 0px 0px -10px 0px;
  text-shadow:1px 1px 5px Black;
  -webkit-user-select: none; 
  -ms-user-select: none; 
  user-select: none;
  text-decoration: none;
}
  
  
}