/* GLOBAL - applies to all colors */

@font-face {
  font-family: 'DJV';
  src: url('fonts/djv-book.ttf') format('truetype');
}

@font-face {
  font-family: 'Bebas';
  src: url('fonts/leaguegothic.ttf') format('truetype');
}

@font-face {
  font-family: 'DJV-bold';
  src: url('fonts/djv.ttf') format('truetype');
}

body {
  font-family: 'DJV', monospace;
  text-align: center;
  margin-left: 20%;
  margin-right: 20%;
}

h1 {
  font-family: 'DJV-bold', monospace;
  text-align: center;
  margin: 0;
  margin-top: 20px;
}

code {
  font-family: 'DJV-bold', monospace;
  background-color: #2c2626;
  color: #639763;
  padding: 1px;
}

.bounce {
  animation: bounce2 2s ease;
}

@keyframes bounce2 {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-30px);}
  60% {transform: translateY(-15px);}
}


i {
  position: fixed;
  right: 2rem;
}

.container {
  padding: 2px 16px;
  min-width: 200px;
}

.cards {
 display: flex;
 justify-content: center;
 align-items: center;
 flex-wrap: wrap;
 padding: 2px 16px;
 min-width: 200px;
}

.card img {
 object-fit: cover;
 height: 300px;
 width: 100%;
}

.card {
 transition: 0.3s;
 width: 40%;
 min-width: 250px;
 min-height: 700px;
 margin: 10px;
 cursor: pointer;
}

.card a {
  text-decoration: none;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

a {
  color: #d10000;
}

.background-text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.background-text h1 {
 font-size: 50vw;
 filter: opacity(0.2);
 z-index: -1;
 font-family: 'Bebas';
 user-select: none;
 position: relative;
}

@keyframes scroll {
   0% { transform: translateX(100%); }
   100% { transform: translateX(-100%); }
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}