body {
    display: grid;
    place-items: center;
    height: 100vh;
    background-color: black;
    margin: 0rem;
    overflow: hidden;
  }
  
  h1 {
    font-family: 'Space Mono', monospace;
    font-size: 105px;
    color: white;
    padding: 0rem clamp(1rem, 2vw, 3rem);
    border-radius: clamp(0.4rem, 0.75vw, 1rem);
    background:linear-gradient(to right, rgb(7, 108, 241), skyblue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fade 2s  ease-in;
  }

  @keyframes fade {
    0%{
       opacity: 0;
    }
    100%{
      opacity: 1;
    }
  }
  

  
  /* -- YouTube Link Styles -- */
  
  body.menu-toggled > .meta-link > span {
    color: rgb(30, 30, 30);
  }
  
  #source-link {
    bottom: 60px;
  }
  
  #source-link > i {
    color: rgb(94, 106, 210);
  }
  
  #yt-link > i {
    color: rgb(239, 83, 80);
  }
  
  .meta-link {
    align-items: center;
    backdrop-filter: blur(3px);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    bottom: 10px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;  
    display: inline-flex;
    gap: 5px;
    left: 10px;
    padding: 10px 20px;
    position: fixed;
    text-decoration: none;
    transition: background-color 400ms, border-color 400ms;
    z-index: 10000;
  }
  
  .meta-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .meta-link > i, .meta-link > span {
    height: 20px;
    line-height: 20px;
  }
  
  .meta-link > span {
    color: white;
    font-family: "Rubik", sans-serif;
    font-weight: 500;
  }
  nav{
    font-size: 35px;
    padding: 0px 10px;
    transition: transform 0.3s ease-in-out;
    animation: fade 2s  ease-in;
  }
  @keyframes fade {
    0%{
       opacity: 0;
    }
    100%{
      opacity: 1;
    }
  }
  nav a{
    text-decoration: none;
    margin-right: 50px;
    margin-bottom:50px;
    color:white;
    font-family: 'Space Mono', monospace;
    animation: fade 2s  ease-in;
    background:linear-gradient(to right, teal, lime);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  @keyframes fade {
    0%{
       opacity: 0;
    }
    100%{
      opacity: 1;
    }
  }
  nav:hover{
    transform: scale3d(1.2, 1.2, 1.2);
  }
  .buttonx {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: black;
    background-color: rgb(221, 214, 214);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    transition: transform 0.3s ease-in-out;
    border: white;
    animation: fade 2s  ease-in;
}
@keyframes fade {
    0%{
       opacity: 0;
    }
    100%{
      opacity: 1;
    }
}
 .buttonx:hover {
    background-color: rgb(187, 183, 183);
    transform: scale(0.8);
    color:black;
    cursor:pointer;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #7289da; /* Discord brand color */
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    transition: transform 0.3s ease-in-out;
    animation: fade 2s  ease-in;
}
@keyframes fade {
    0%{
       opacity: 0;
    }
    100%{
      opacity: 1;
    }
}

.button:hover {
    background-color: #5a6fb4;
    cursor:pointer;
    transform: scale(0.8);
}
#logo {
    width: 100px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    /* Additional styling if needed */
}

#home-link {
    display: inline-block; /* Makes the whole logo area clickable */
    text-decoration: none; /* Removes underline from the link */
}

  