/* (A) FIXED WRAPPER */
/* CREDITS TO: W.S. Toh / Tips & Tutorials - HTML & CSS / March 11, 2022
https://code-boxx.com/html-css-news-ticker-horizontal-vertical/#sec-horizontal
*/
@font-face {
  font-family: "Ghosties-Regular";
  src: url(/ghosties/Ghosties-Regular.ttf);
}

.fonttest {
  font-family: Ghosties-Regular;
}

.h3 {
  font-family: Ghosties-Regular;
}

.tickerbar {
  display: inline;
}
/* .hwrap{
    height: 110%;
    width: 100%;
  } */
.hitem,
.hitem > a {
  display: inline;
  flex-shrink: 0;
  width: fit-content;

  text-align: center;
  text-decoration: none;
}
.hitem {
    padding: 5px 70px;
    height: 3em;
}
.hitem img {
  margin: 0;
  display: inline;
  width: 100%;
  height: 100%;
}
.hmove {
  width: 42256%;
  white-space: nowrap;
  display: flex;
}
.tickerbar {

  animation: marquee 50s linear infinite;
  display: flex;
  justify-content: space-between;
}
@keyframes marquee {
  from {
  }
  to {
    transform: translateX(-100%);
  }
}
.hmove:hover .tickerbar {
  animation-play-state: paused;
}

.hwrap {
  overflow: hidden;
  background: rgb(255,255,255);
}

/* (B) MOVING TICKER WRAPPER */
/* .hmove {
  display: flex;
} */

/* (C) ITEMS - INTO A LONG HORIZONTAL ROW */
/* .hitem {
  flex-shrink: 0;
  width: 15%;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;

} */

/* (D) ANIMATION - MOVE ITEMS FROM RIGHT TO LEFT */
/* 4 ITEMS -400%, CHANGE THIS IF YOU ADD/REMOVE ITEMS */
/* @keyframes tickerh {
  0% { transform: translate3d(100%, 0, 0); }
  100% { transform: translate3d(-425%, 0, 0); }
}
.hmove { animation: tickerh linear 35s infinite; }
.hmove:hover { animation-play-state: paused; } */
