html, body {
  background: #000000;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  line-height: 1.4;
}

h1 {
  color: white;
  font-family: DOTO, consolas;
  text-align: center;
  font-size: 5vh;
}

h2 {
  color: white;
  font-family: consolas;
  text-shadow: 0 0 20px;
}

marquee {
  color: white;
  font-family: DOTO, consolas;
  font-size: 2vh;
}

li {
  color: white;
  font-family: consolas;
}

p {
  color: white;
  font-family: consolas;
}

a {
  color: lightblue;
  text-decoration: none;
  font-family: consolas;
}


canvas {
  position: fixed;
  height: 100vh;
  width: 100vh;
}

img{
  margin: 1em;
}

#wrapmyburrito {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: static;
  margin: 0 auto;
  max-width: 50em;
  height: auto;
  z-index: 5;  
}

.byte-style span{
  display: inline-block;
  font-size: 1.2em;
  animation: wave 2s ease-in-out infinite;
}

.byte-style span:nth-child(1){
  animation-delay: 0s;
}
.byte-style span:nth-child(2){
  animation-delay: 0.2s;
}
.byte-style span:nth-child(3){
  animation-delay: 0.4s;
}
.byte-style span:nth-child(4){
  animation-delay: 0.6s;
}
@keyframes wave {
  0%, 100%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-20px);
  }
}

#pickle {
  padding: 0.7em;
  line-height: 0.3em;
}
.lettuce {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1vh dotted white;
  border-radius: 1em;
  padding: 5%;
  backdrop-filter: blur(5px) brightness(80%);
  background-color: rgba(0, 0, 0, 0.4);
  margin-top: 5vh;
  box-shadow: #000000;
  ;
}

.lettuce:hover{
  border: 1vh dashed white;
  transition: transform 3s ease;
}

.btn {  
  display: inline-block;
  position: relative;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  min-width: 200px;
  z-index: 1;
}

.neon-pulse {
  background: #000;
  border: 2px solid #ffff;
  box-shadow: 0 0 10px #808080;
  overflow: visible;
  transition: box-shadow 0.3s ease; 
}

.neon-pulse::before,
.neon-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid #ffff;
  border-radius: inherit;
  animation: none; 
  opacity: 0;
}

.neon-pulse:hover::before,
.neon-pulse:hover::after {
  animation: pulseOut 2s ease-out infinite; 
}

.neon-pulse:hover::after {
  animation-delay: 1s;
}

@keyframes pulseOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* --- Grid Container (Handles the 5-column Layout) --- */
.staff-container {
    display: grid;
    /* By default, try to fit as many 200px columns as possible */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px; /* Limits the max width of the section */
    margin: 0 auto;
}

/* --- Styling for Each Staff Member Card --- */
.staff-member {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.staff-member:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* --- Profile Picture Placeholder --- */
.profile-pic-placeholder {
    /* Creates a perfect circle for the image */
    width: 120px;
    height: 120px;
    border-radius: 90%; /* Makes it circular */
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffff;
    box-shadow: 0 0 10px #808080;
    overflow: visible;
    font-size: 0.9em;

}


/* --- Responsive Adjustments for 5 Members --- */
@media (min-width: 1024px) {
    /* When there is enough room, force 5 equal columns */
    .staff-container {
        grid-template-columns: repeat(5, 1fr);
    }
}