
   
   @import url('https://fonts.googleapis.com/css2?family=Forum&display=swap');
   @import url('https://fonts.googleapis.com/css2?family=Libre+Barcode+128+Text&display=swap');
   
.big-text {
  font-family: 'Libre Barcode 128 Text', system-ui;
  font-size: 30px;
  color: #ffffff;
  text-align: center;
  
}

body {
  background-color: black;
}

.main  {
  background-color: #1a060b;
  color: #ddd;
  font-family: 'Forum', serif;
  padding: 25px;
  margin-left: 50px;
  margin-right: 50px;
  border-radius: 1px;
  text-align: center;
  font-size: 20px;
  border-color: #a30026;
  border-width: 10px;
  border-style: inset;
  
}

  

.nav-buttons a {
  padding: 5px;
  border-radius: 0px;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 20px;

}

.footer {
  border-color: #a30026;
  padding: 10px;
  border-style: solid;
   margin-top:auto;
    margin-bottom:auto;
    text-align:center;
  background-color: black;
  
}

.hilight {
  color: yellow !important;
  font-weight: bold !important;
}


.small {
  font-size: 15px;
}

img:hover {

  animation-iteration-count: infinite;
}

@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
}




