/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––

- Grid
- Base Styles
- Background
- Typography
- Links
- Code
- Spacing
- Utilities
- Misc
- Credit footer

*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
    position: relative;
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box; }
  .column {
    position: center;
    width: 100%;
    float: center;
    box-sizing: border-box; }
  
  /* For devices larger than 400px */
  @media (min-width: 400px) {
    .container {
      width: 85%;
      padding: 0; }
  }
  
  /* For devices larger than 550px */
  @media (min-width: 550px) {
    .container {
      width: 80%; }
    .column,
    .columns {
      margin-left: 0; }
    .column:first-child,
    .columns:first-child {
      margin-left: 0; }
  
  }
  
  
  /* Base Styles
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* NOTE
  html is set to 62.5% so that all the REM measurements throughout Skeleton
  are based on 10px sizing. So basically 1.5rem = 15px :) */

  html {
    font-size: 100%; }

  :root {
    --bgColor: #0a061a;
    --bgColor2: #020106;
    --accentColor: #00ff88;
    --font: 'roboto', 'Arial', sans-serif;
    --delay: .3s; }

  /* Background
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

  body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: var(--font);
    background: radial-gradient(ellipse at bottom, var(--bgColor) 0%, var(--bgColor2) 100%);
    opacity: 0;
    animation: 1s ease-out var(--delay) 1 transitionAnimation;
    animation-fill-mode: forwards;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: #f8f9fa;
  }

  
  /* Animation */
  @keyframes transitionAnimation {
    0% {
        opacity: 0;
        top: -10px;
    }
    100% {
        opacity: 1;
        top: 0px;
    }
}

@keyframes animate {
    0% {
      background-position: -500%;
    }
    100% {
      background-position: 500%;
    }
}

@keyframes animStar {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-2000px);
    }
}
  
  /* Typography
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  h1 {
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 400; }
  h1 {
    font-size:24px;
    line-height: 64px;
    letter-spacing: 0;
    font-family: 'Jersey 25', 'Oxanium', monospace;
    background: linear-gradient(90deg, #4a1a68, #00ff88);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  
  /* Larger than phablet */
  @media (min-width: 350px) {
    h1 { font-size: 48px; line-height: 96px; }
  }
  
  p {
    margin-top: 0; }
  
  
  /* Links
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  a {
    color: #00ff88; 
    text-decoration: none;
  }
  a:hover {
    color: #00ff88; }
  
  .spacing {
    padding: 0 10px;
    padding-top: 50px;
  }
  
  /* Code
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  code {
    padding: .2rem .5rem;
    margin: 0 .2rem;
    font-size: 90%;
    white-space: nowrap;
    background: rgba(8, 11, 18, 0.6);
    border: 1px solid rgba(3, 0, 27, 0.4);
    border-radius: 4px;
    color: #00ff88; }
  pre > code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre; }
  
  /* Spacing
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  button,
  .button {
    margin-bottom: 1rem;
    display: block !important; }
  input,
  textarea,
  select,
  fieldset {
    margin-bottom: 1.5rem; }
  pre,
  blockquote,
  dl,
  figure,
  p,
  ol {
    margin-bottom: 2.5rem; }
  
  
  /* Utilities
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .u-full-width {
    width: 100%;
    box-sizing: border-box; }
  .u-max-full-width {
    max-width: 100%;
    box-sizing: border-box; }
  .u-pull-right {
    float: right; }
  .u-pull-left {
    float: left; }
  
  
  /* Misc
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  hr {
    margin-top: 3rem;
    margin-bottom: 3.5rem;
    border-width: 0;
    border-top: 1px solid rgba(3, 0, 27, 0.4); }
  

  /* ===== Scrollbar CSS ===== */
    /* Firefox */
    * {
      scrollbar-width: thin;
      scrollbar-color: #0a061a #020106;
    }
  
    /* Chrome, Edge, and Safari */
    *::-webkit-scrollbar {
      width: 8px;
    }
  
    *::-webkit-scrollbar-track {
      background: #020106;
    }
  
    *::-webkit-scrollbar-thumb {
      background-color: #0a061a;
      border-radius: 30px;
      border: 3px none #020106;
    }

  
/* Credit footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Styling for credit footer text */
.credit-txt {
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.credit-icon {
  display: none;
  right: 5px;
}
.credit-footer {
  position: relative;
  right: 15px;
}

/* Switches text color for credit footer for dark/light mode */

 .credit-txt-clr{
     color: #00ff88 !important;
}



/*-----------------------parallax-----------------------*/
#object1 {
  width: 1px;
  height: 1px;
  background: transparent;
  animation: animStar 120s linear infinite;
}

#object1:after {
  content: '';
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  background: transparent;
}

#object2 {
  width: 2px;
  height: 2px;
  background: transparent;
  animation: animStar 180s linear infinite;
}

#object2:after {
  content: '';
  position: absolute;
  top: auto;
  width: 2px;
  height: 2px;
  background: transparent;
}

#object3 {
  width: 3px;
  height: 3px;
  background: transparent;
  animation: animStar 240s linear infinite;
}

#object3:after {
  content: '';
  position: absolute;
  top: auto;
  width: 3px;
  height: 3px;
  background: transparent;
}

/* Nebula gradient overlay */
#nebula-overlay {
  position: absolute;
  width: 125%;
  height: 125%;
  left: -25%;
  top: -25%;
  background:
    radial-gradient(circle at 20% 30%, rgba(74, 26, 104, 0.3) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.15) 0%, transparent 20%),
    radial-gradient(circle at 40% 80%, rgba(139, 21, 56, 0.2) 0%, transparent 20%),
    radial-gradient(circle at 70% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 20%);
  animation: nebula-drift 20s infinite linear;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

@keyframes nebula-drift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(100px, -50px); }
  100% { transform: translate(0, 0); }
}