/* 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; }

  @media (min-width: 400px) {
    .container {
      width: 85%;
      padding: 0; }
  }

  @media (min-width: 550px) {
    .container {
      width: 80%; }
    .column,
    .columns {
      margin-left: 0; }
    .column:first-child,
    .columns:first-child {
      margin-left: 0; }
  }


  /* Base Styles
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  html {
    font-size: 100%; }

  :root {
    --bgColor: #10131A;
    --bgColor2: #05060A;
    --accentColor: #E8A33D;
    --font: 'Space Grotesk', sans-serif;
    --delay: .3s; }


  /* Background
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: var(--font);
    background: radial-gradient(ellipse at top, 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: #F4F5F7;
  }

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


  /* Typography
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  h1 {
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.01em; }
  h1 { font-size: 24px; line-height: 64px; letter-spacing: 0; }

  @media (min-width: 350px) {
    h1 { font-size: 40px; line-height: 88px; }
  }

  p {
    margin-top: 0;
    color: #A0AEC0; }


  /* Links
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  a {
    color: var(--accentColor);
    text-decoration: none;
  }
  a:hover {
    color: var(--accentColor); }

  .spacing {
    padding: 0 10px;
    padding-top: 50px;
  }


  /* Code
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  code {
    padding: .2rem .5rem;
    margin: 0 .2rem;
    font-size: 90%;
    white-space: nowrap;
    background: #1B2029;
    border: 1px solid #2A3040;
    border-radius: 4px;
    color: #F4F5F7; }
  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 #2A3040; }

  /* ===== Scrollbar CSS ===== */
    * {
      scrollbar-width: thin;
      scrollbar-color: #2A3040 #10131A;
    }

    *::-webkit-scrollbar {
      width: 8px;
    }

    *::-webkit-scrollbar-track {
      background: #10131A;
    }

    *::-webkit-scrollbar-thumb {
      background-color: #2A3040;
      border-radius: 30px;
      border: 3px none #ffffff;
    }


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

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

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