@font-face { font-family: Prestige; src: url('/assets/font/Nirmala.ttf'); } 
@font-face { font-family: Zombie; src: url('/assets/font/zombie.ttf'); }
@font-face { font-family: GlitchGoblin; src: url('/assets/font/glitchgoblin.ttf'); }

.creatorsbody {
    background-image: linear-gradient(rgba(0, 0, 0, 0.432), rgba(44, 44, 44, 0.295)), url('/assets/media/newbg.png');
    background-size: cover;
    background-repeat: repeat;
    height: 100vh;
    overflow-y: scroll;
    background-attachment: fixed;
}


.parent {
    display: flex;
    justify-content: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 10px; /* Gap between grid items */
}

.grid-item {
    width: 200px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-image {
    width: 201px;
    height: 81px;
    border: 1px solid #00ff0d;
    object-fit: fill;
}



.headertitle { 
    background-color: transparent;
    display: flex;
  justify-content: center;
  align-items: center;
}

/* adjust font size for smaller screens */
@media only screen and (max-width: 600px) {
    /* adjust font size of header */
      #headertitle h1 {
        font-size: 2em;
      }
  
      /* adjust font size of navigation links */
      .navtext a {
        font-size: 0.8em;
      }
  
      /* adjust font size of member names */
      .member-container a#member-name {
        font-size: 0.8em;
      }
   }

   h1 {
    text-align: center;
    font-family: 'GlitchGoblin', 'Prestige', 'Courier New', Courier, monospace;
    color: #34FF00;
    font-size: 60px;
    background-color: transparent;
 }

 nav {
    background-color: transparent;
    text-align: center;
    
 }

 nav a {
    color: #34FF00;
    font-family: 'Prestige', 'Courier New', Courier, monospace;
    font-size: 16px;
    text-decoration: none;
    padding-left: 18px;
    text-align: center;
}