@font-face {
    font-family: 'HelpMe';
    src: url('HelpMe.ttf') format('truetype');
}

@font-face {
    font-family: 'Mono';
    src: url('Helvetica.ttf') format('truetype');
}

/* Default for everything */
* {
    font-family: 'Mono', sans-serif;
    color: white;
}

/* Use HelpMe only on h1 */
h1 {
  font-family: 'HelpMe', sans-serif;
  font-size: 48px;
  font-weight: normal; /* Makes it less bold */
  text-align: center;  /* Centers the text */
  margin-bottom: 20px;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Helvetica;
    color: white;
}
.wallpaper {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url(/wallpaper/wallpaper3.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

html, body {
    overflow: hidden; 
    margin: 0;
    padding: 0;
    height: 100%;
}

.members {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;  
    font-size: 18px;
}

.members a {
    text-decoration: none;
    color: #ffffff;  
    transition: color 0.3s ease, transform 0.3s ease; 
}

.members a:hover {
    color: #ffffff;  
    transform: scale(1.1);  
}


.members-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 40px 20px;
}

.member-card {
  background-color: rgba(0, 0, 0, 0.7);
  border: 2px solid #C5C6D3;
  border-radius: 10px;
  padding: 15px;
  width: 160px;
  text-align: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3), 0px 0px 10px rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease;
}

.member-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
}

.member-card a {
  text-decoration: none;
  color: inherit;
}

.member-pfp {
  display: block;         /* Make image block-level so margin works */
  margin: 0 auto 10px;    /* Center horizontally, with 10px bottom margin */
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  padding: 5px;
  background-color: black;
  border: 2px solid #C5C6D3;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15), 0 0 8px rgba(134, 92, 215, 0.3);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.member-card:hover .member-pfp {
  transform: scale(1.05);
  filter: brightness(1.2);
}


.member-name {
  font-size: 18px;
  font-weight: bold;
  color: #C5C6D3;
  background-image: url('../assets.guns.lol/sparkle_yellow.gif');
  background-repeat: repeat;
  background-size: contain;
  padding: 3px 6px;
  display: inline-block;
}

.member-role {
  font-size: 12px;
  color: #C5C6D3;
  margin-top: 5px;
}

pre {
    color: #fff;
    overflow-x: hidden;
    overflow-y: hidden;
    border: none;
    font-size: 10px;
    
}
.social-buttons {

    z-index: 2;
}

.social-buttons {
    width: 100%;
    height: 100%;
    border-radius: 60%;
    overflow: hidden;
}
.social-buttons:hover {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 60%;
    background-color: #3d3d3db2;
}

.center-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.box-brrr {
    width: calc(47% - 10px);
    border-radius: 2px;
    background-color: transparent;
    padding: 20px;
    display: block;
    box-sizing: border-box;
    margin: 0 5px; 
}

.box-contain {
    display: flex;
    margin-top: 1em;
    width: 500px;
    text-align: center;
    justify-content: center;
}


.pfp {
    width: 110px;
    height: auto;
    border-radius: 50%;
    margin-left: 20px;
}

.text {
    margin-top: 30px;
	text-decoration: none;
	color: #dddddd;
    text-align: center;
	font-size: 12px;
}

.fade-in-image {
    animation: fadeIn 3s;
    -webkit-animation: fadeIn 3s;
    -moz-animation: fadeIn 3s;
    -o-animation: fadeIn 3s;
    -ms-animation: fadeIn 3s;
  }
  @keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:1; }
  }
  
  @-moz-keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:1; }
  }
  
  @-webkit-keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:1;}
  }
  
  @-o-keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:1; }
  }
  
  @-ms-keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:1; }
  }

  
  @media (max-width: 600px) {
    html, body {
        overflow-x: hidden;
    }
    .intial-container {
        margin-top: 1200px;

    }
    .box-contain {
        flex-direction: column;
        align-items: center;
    }
    .box-brrr {
        max-width: 400px;
    }
    .box-brrr2 {
        max-width: 400px;
    }
    pre {
        font-size: 14px;
        overflow-y: auto;
    }
    .text {
        font-size: 8px;
        margin-bottom: 150px;
    }
}
.raindrop {
            position: absolute;
            background: rgba(255, 255, 255, 0.6);
            animation: rain-fall linear infinite;
        }

        @keyframes rain-fall {
            from {
                transform: translateY(-100%) rotate(0deg);
                opacity: 1;
            }

            to {
                transform: translateY(100vh);
                opacity: 0;
            }
        }

        .rain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            pointer-events: none;
            z-index: 1;
        }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: black;
      color: #ffffff;
    }

    header {
      background-color: hsl(0, 0%, 3%);
      color: #fff;
      padding: 20px;
      text-align: center;
    }

    nav {
      background-color: hsl(0, 0%, 3%);
      display: flex;
      justify-content: center;
      padding: 10px 0;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      margin: 0 15px;
      font-weight: bold;
    }

    .hero {
      height: 149px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-shadow: 2px 2px 5px #000000;
    }

    .hero h1 {
      font-size: 48px;
    }

    .hero a {
      font-size: 20px;
    }

    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 40px;
    }

    .product {
      border: 1px solid #ffffff;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      background-color: #000000;
      transition: transform 0.2s ease;
      height: 450px;
      width: 300px;
    }

    .product:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 10px white, 0 0 20px white;
      animation: ease;
    }

    .product img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .product h3 {
      margin: 15px 0 5px;
    }

    .product p {
      color: hsl(0, 0%, 100%);
      margin-bottom: 15px;
    }

    footer {
      background-color: hsl(0, 0%, 3%);
      color: #ffffff;
      text-align: center;
      padding: 20px;
      margin-top: 50px;
    }
    .selected:hover {
     text-shadow: 0 0 10px white, 0 0 20px white;
    }

    .a {
      color: white;
      text-align: center;
    }
    .a:hover {
     text-shadow: 0 0 10px white, 0 0 20px white;
    }

    .profiles {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.profile-link {
    text-decoration: none;
    color: white;
}

.profile {
    cursor: url(https://cur.cursors-4u.net/symbols/sym-1/sym46.cur), auto !important;
    width: 120px;
    height: 200px;
    border: 2px solid #111111;
    border-radius: 15px;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.profile:hover {
    transform: scale(1.1);
}

.profile img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    margin-bottom: 5px;
}

.profile p {
    margin: 0;
    font-size: 16px;
}

.container {
    margin-top: -300px;
    text-align: center;
}

.title {
    cursor: url(https://cur.cursors-4u.net/symbols/sym-1/sym46.cur), auto !important;
    font-size: 50px;
    margin-bottom: 20px;
    margin-top: 200px;
    text-align: center;
    text-decoration: none;
    color: white;
    padding: 10px;
    display: inline-block;
    transition: text-shadow 0.3s ease-in-out;
}


    .title:hover {
      text-shadow: 0 0 10px white, 0 0 10px white;
    }

.bio {
    margin-bottom: 20px;
    font-size: 10x;
}
.bio:hover {
      text-shadow: 0 0 10px white, 0 0 10px white;
}

 .other {
      text-align: center;
      text-decoration: none;
      color: white;
      background-color: black;
      padding: 10px;
      display: inline-block;
      transition: text-shadow 0.3s ease-in-out;
    }
    .other:hover {
        text-shadow: 0 0 10px white, 0 0 10px white;
    }

html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.border-box {
  position: relative;
  border: 2px solid #555;
  padding: 1.5em;
  width: var(--box-width, 100%);
  border-radius: var(--border-radius, 8px);
  margin: 2em auto;
  background: #1e1e1e;
  color: #f0f0f0;
}

.border-text {
  position: absolute;
  top: -0.8em;
  left: 1em;
  background: #1e1e1e;
  padding: 0 0.5em;
  font-weight: bold;
  color: #fff;
}

.box-contain {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.box-brrr {
  background-color: #222222;
  border: 1px solid #7c7979;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  width: 200px;
}

.pfp {
  border-radius: 100%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.click {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.fade-out {
  animation: fadeOut 1s;
  -webkit-animation: fadeOut 1s;
  -moz-animation: fadeOut 1s;
  -o-animation: fadeOut 1s;
  -ms-animation: fadeOut 1s;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-ms-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fade-in-image {
  animation: fadeIn 3s;
  -webkit-animation: fadeIn 3s;
  -moz-animation: fadeIn 3s;
  -o-animation: fadeIn 3s;
  -ms-animation: fadeIn 3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.title a {
  text-decoration: none;
  color: inherit;
}
@-webkit-keyframes snowflakes-fall {
    0% {
      top: -10%;
    }
    100% {
      top: 100%;
    }
  }
  @-webkit-keyframes snowflakes-shake {
    0%,
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    50% {
      -webkit-transform: translateX(80px);
      transform: translateX(80px);
    }
  }
  @keyframes snowflakes-fall {
    0% {
      top: -10%;
    }
    100% {
      top: 100%;
    }
  }
  @keyframes snowflakes-shake {
    0%,
    100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(80px);
    }
  }
  .snowflake {
    color: rgb(253, 253, 253);
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px #000;
    font-size: 1em;
    position: fixed;
    top: -10%;
    z-index: 9999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    -webkit-animation-name: snowflakes-fall, snowflakes-shake;
    -webkit-animation-duration: 10s, 3s;
    -webkit-animation-timing-function: linear, ease-in-out;
    -webkit-animation-iteration-count: infinite, infinite;
    -webkit-animation-play-state: running, running;
    animation-name: snowflakes-fall, snowflakes-shake;
    animation-duration: 10s, 3s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
    animation-play-state: running, running;
  }
  .snowflake:nth-of-type(0) {
    left: 1%;
    -webkit-animation-delay: 0s, 0s;
    animation-delay: 0s, 0s;
  }
  .snowflake:nth-of-type(1) {
    left: 10%;
    -webkit-animation-delay: 1s, 1s;
    animation-delay: 1s, 1s;
  }
  .snowflake:nth-of-type(2) {
    left: 20%;
    -webkit-animation-delay: 6s, 0.5s;
    animation-delay: 6s, 0.5s;
  }
  .snowflake:nth-of-type(3) {
    left: 30%;
    -webkit-animation-delay: 4s, 2s;
    animation-delay: 4s, 2s;
  }
  .snowflake:nth-of-type(4) {
    left: 40%;
    -webkit-animation-delay: 2s, 2s;
    animation-delay: 2s, 2s;
  }
  .snowflake:nth-of-type(5) {
    left: 50%;
    -webkit-animation-delay: 8s, 3s;
    animation-delay: 8s, 3s;
  }
  .snowflake:nth-of-type(6) {
    left: 60%;
    -webkit-animation-delay: 6s, 2s;
    animation-delay: 6s, 2s;
  }
  .snowflake:nth-of-type(7) {
    left: 70%;
    -webkit-animation-delay: 2.5s, 1s;
    animation-delay: 2.5s, 1s;
  }
  .snowflake:nth-of-type(8) {
    left: 80%;
    -webkit-animation-delay: 1s, 0s;
    animation-delay: 1s, 0s;
  }
  .snowflake:nth-of-type(9) {
    left: 90%;
    -webkit-animation-delay: 3s, 1.5s;
    animation-delay: 3s, 1.5s;
  }
  .snowflake:nth-of-type(10) {
    left: 25%;
    -webkit-animation-delay: 2s, 0s;
    animation-delay: 2s, 0s;
  }
  .snowflake:nth-of-type(11) {
    left: 65%;
    -webkit-animation-delay: 4s, 2.5s;
    animation-delay: 4s, 2.5s;
  }
  #snowflakes 
    visibility: hidden;
  