/* css version 3.5 */
@font-face {
  font-family: speedee;
  src: url(assets/fonts/Speedee_W_Rg.ttf);
}
@font-face {
  font-family: speedee;
  src: url(assets/fonts/Speedee_W_Bd.ttf);
  font-weight: bold;
}
html * {
  font-family: speedee;
  background-color:black;
  color:white;
}
.banner {
  display: table;
  height: 10vh;
  width: 100%;
  background-image: url(assets/images/burger_logo.png?v=5);
  background-size: contain;
  background-repeat: round;
}
.bannertitle {
  height: inherit;
  width: inherit;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  background-color: transparent;
  color: rgb(245, 187, 71);
  text-shadow: -0.1em 0em 0.5em white, 0.1em 0em 0.5em white,
    0em -0.1em 0.5em white, 0em 0.1em 0.5em white;
}
.name{
  width: 25vw;
}
.number {
  width: 25vw;
}
.description{
  width: 50vw;
}
th {
  background-color: rgb(245, 187, 71);
  color: black;
  top: 0;
  position: sticky;
}
#mytable {
  width: 100%;
}
td {
  background-color: transparent;
}
tr a{
  background-color: transparent;
}
tr:nth-child(even) {
  transition: background-color 0.25s;
  background-color: rgba(245, 187, 71, 0.3) !important;
}
tr:hover td,
tr:hover pre {
  transition: background-color 0.25s;
  background-color: rgb(245, 187, 71) !important;
  color: black !important;
}