@font-face {
    font-family: 'PublicPixel';
    src: url('Fonts/PublicPixel.ttf') format('truetype');
}

 body 
 {
    line-height: 1.5; /* Improve readability */
    font-family: 'PublicPixel', sans-serif;
    background-image: url('BGS/Dith.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    background-attachment: fixed; 
}
button 
{
   font-family: 'PublicPixel', sans-serif;
}



/* Media for Phones */
@media (max-width: 480px) {
     body {
      display: table;
      justify-content: center;
      text-align: center;
    font-size: 30px;
    
    }
}


/* JS code (Send it here brodi) */

.img {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.6s ease-out;
}


.slide-in {
  opacity: 1;
  transform: translateX(0);
}
