@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&family=Press+Start+2P&display=swap');
body {
  background: url('bgtest.gif') repeat;
  animation: slideDown 10s linear infinite;   
  color: #ff0000;
  font-family: ', Press Start 2P', 'Courier New', monospace;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
  overflow-x: hidden;
}

@keyframes slideDown {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 1000px; 
  }
}


.container {
  border: 1px solid #ff0000;
  padding: 2rem;
  margin-top: 2rem;
  background: rgb(0, 0, 0);
  position: relative;
  box-shadow: 0 0 10px rgba(255, 30, 30, 0.2);
  animation: container-glow infinite;
  animation-delay: 0.5s;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  text-align: center;
}

.buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 8px 12px;
  margin: 20px 0;
  padding: 10px;
  border: 1px solid #1f7070;
  animation: container-glow 3s ease-in-out infinite;
}

@keyframes container-glow {
  0% { box-shadow: 0 0 10px rgb(255, 0, 0); }
  50% { box-shadow: 0 0 20px rgb(255, 0, 0); }
  100% { box-shadow: 0 0 10px rgb(255, 0, 0); }
}

.buttons img {
  width: 100%;
  height: 40px;
  object-fit: contain;
  padding: 2px;
  image-rendering: crisp-edges;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  background: rgb(0, 0, 0);
}

.buttons img:hover {
  transform: scale(1.03);
  border-color: #1f7070;
}

.ascii-art {
  text-align: center;
  font-size: 0.7rem;
  white-space: pre;
  margin: 50px 0;
  color: #ff0000;
  text-shadow: 0 0 10px rgba(255, 11, 11, 0.3);

}
.p {
  font-family: 'Press Start 2P';
  font-size: 2rem;
  color: #ff0000;
  text-align: center;
  
}
.staff-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.staff-member {
  padding: 8px;
  border: 1px solid #ff0000;
  background: rgba(31, 112, 112, 0.05);
  transition: all 0.3s ease;
}

.staff-member:hover {
  background: rgba(255, 0, 0, 0.37);
  transform: translateX(5px);
}

.founder {
  color: #ff0202;
  border-color: #ff0000;
}
.cofounder {
  color: #ff0000;
  border-color: #ff0000;
}
.admin {
  color: #ff0000;
  border-color: #ff0000;
}