/*
 * well, hi.
 * programmer: d1vye :3 (solo dev)

 rate my css :D
*/
:root {
  /* very good color choice :>*/
  --color-text-primary: rgb(154, 158, 158);
  --color-text-secondary: #8b8e8e;
  --color-text-light: rgb(224, 214, 214);
  --color-text-emphasis: rgb(255, 255, 255);
  --color-text-hover: rgb(251, 251, 251);
  --color-accent-twitter: #ff0000;
  --color-accent-github: #0000ff;
  --color-accent-hover: #ffffff;
  --color-bg-page: rgb(255, 255, 255);
  --color-shadow: rgba(24, 97, 110, 0.46);
--bg-gradient: radial-gradient(ellipse 700px 700px at 100% 100%,
  #002966 0%,
  transparent 70%
),
radial-gradient(ellipse 700px 700px at 0% 0%,
  #002966 0%,
  transparent 70%
),
#0f1622;
  /* Spacing thingy, I'm gonna use this for padding.*/
  --spacing-xs: 20px;
  --spacing-sm: 30px;
  --spacing-md: 40px;

  /* good old typography */
  --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-family-display: "Inter", "Montserrat", "Segoe UI", sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 0.9rem;

  --font-weight-normal: 400;
  --font-weight-bold: 700;

  --letter-spacing-default: 3px;
  --letter-spacing-large: 4px;
  --line-height-content: 1.7;

  --transition-default: 0.3s ease;
  --border-radius-md: 12px;


  --content-max-width: 650px;
}


* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
background: var(--bg-gradient);
  background-attachment: fixed;
  min-height: 100vh;
  margin: 0;
  background-position: center;
  background-size: cover;
  

  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  overflow-x: hidden;

  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  line-height: var(--line-height-content);
}


h1 {
  margin: 0;
  font-weight: var(--font-weight-bold);
}

p {
  margin: 0 0 1em 0;
}


a {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-default);
  text-decoration: none;
  color: inherit;
  cursor: pointer;

  transition: transform var(--transition-default),
              color var(--transition-default);
}



.main-stuff {
  width: 100%;
  min-height: 100vh;
  padding: var(--spacing-md) var(--spacing-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}


.nav-link {
  position: fixed;
  top: var(--spacing-xs);
  left: var(--spacing-xs);
  z-index: 100;

  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-sm);
  color: var(--color-text-primary);

  transform: scale(0.9);
  transform-origin: left center;
}

.nav-link:hover {
  transform: scale(1);
  color: var(--color-accent-hover);
}

.nav-link:active {
  transform: scale(0.95);
}


.profile {
  width: 100%;
  max-width: var(--content-max-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.profile__header {
  padding: var(--spacing-sm) 0;
  margin-bottom: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
}

.profile__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;

  transition: transform var(--transition-default),
              box-shadow var(--transition-default);

  box-shadow: 0 0 0 3px rgba(247, 4, 4, 0);
}

.profile__avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 4px 9px var(--color-shadow);
}

.profile__name {
  letter-spacing: var(--letter-spacing-large);
  font-family: var(--font-family-display);
  font-style: oblique;
  font-size: 1.5rem;
  margin: 0;

  transition: transform var(--transition-default),
              color var(--transition-default);
}

.profile__name:hover {
  transform: scale(1.05);
}

.profile__handle {
  letter-spacing: var(--letter-spacing-large);
  font-size: 1rem;
  margin: 0;
  position: relative;
  bottom: 10px;

  transition: transform var(--transition-default),
              color var(--transition-default);
}

.profile__handle:hover {
  transform: scale(1.1);
}

.profile__greeting {
  color: var(--color-text-emphasis);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-large);
  margin-bottom: var(--spacing-sm);
}

.profile__bio {
  color: var(--color-text-light);
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  text-align: left;
  line-height: var(--line-height-content);
}

.profile__bio p {
  margin-bottom: 1.2em;
}

.profile__bio p:last-child {
  margin-bottom: 0;
}

.profile__footer {
  width: 100%;
  margin-top: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.profile__links {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile__link {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-sm);
  color: var(--color-text-primary);

  transition: transform var(--transition-default),
              color var(--transition-default);
}

.profile__link:hover {
  transform: scale(1.1);
  color: var(--color-text-hover);
}

.profile__link--twitter:hover {
  color: var(--color-accent-twitter);
}

.profile__link--github:hover {
  color: var(--color-accent-github);
}

.copyright {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  margin: 0;
}

@media (max-width: 768px) {
  :root {
    --spacing-xs: 15px;
    --spacing-sm: 25px;
    --font-size-base: 15px;
  }

  .main-stuff {
    padding: var(--spacing-sm) var(--spacing-xs);
  }

  .profile__name,
  .profile__handle {
    letter-spacing: 2px;
  }

  .profile__avatar {
    width: 100px;
    height: 100px;
  }

  a {
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-xs: 12px;
    --spacing-sm: 20px;
    --font-size-base: 14px;
  }

  .main-stuff {
    padding: var(--spacing-sm) var(--spacing-xs);
  }

  .profile__avatar {
    width: 90px;
    height: 90px;
  }

  .profile__name {
    font-size: 1.25rem;
  }

  .nav-link {
    transform: scale(1);
  }

  .profile__links {
    gap: var(--spacing-xs);
  }
}


/*

===================================THIS IS THE MAIN.CSS MERGED WITH THIS CSS ============================================================================ */

/*
main.css 
Author: d1vye :3 (solo dev)
*/

:root {
 /* looks like we've got some colors right here...*/
  --color-text-primary: rgb(214, 214, 214);
  --color-text-secondary: rgba(158, 154, 154, 0.7);
  --color-text-meta: #b6b5b5;
  --color-text-title: rgba(210, 208, 206, 0.95);
  --color-text-link: #7a7a7a;
  --color-link-hover: #ffffff;
  --color-bg-page: rgb(255, 255, 255);
  --color-border: rgba(204, 204, 204, 0.47);
--bg-gradient: radial-gradient(ellipse 700px 700px at 100% 100%,
  #002966 0%,
  transparent 70%
),
radial-gradient(ellipse 700px 700px at 0% 0%,
  #002966 0%,
  transparent 70%
),
#0f1622;
 /* will be used for padding */
  --spacing-xs: 20px;
  --spacing-sm: 30px;
  --spacing-md: 40px;
  --spacing-lg: 100px;

  /* some beautiful fonts i believe */
  --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-family-serif: Georgia, "Times New Roman", serif;
  --font-size-base: 16px;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;

  --font-weight-meta: 500;
  --font-weight-normal: 400;
  --font-weight-bold: 700;

  --letter-spacing-default: 3px;
  --letter-spacing-large: 4px;
  --line-height-content: 1.6;
  --line-height-heading: 1.3;

  --transition-default: 0.3s ease;
  --transition-slow: 0.5s ease;


  --content-max-width: 700px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  
background: var(--bg-gradient);
  background-attachment: fixed;
  min-height: 100vh;
  margin: 0;
  background-position: center;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;

  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  line-height: var(--line-height-content);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: var(--line-height-heading);
  font-weight: var(--font-weight-bold);
}

h2 {
  color: var(--color-text-title);
  font-size: var(--font-size-xl);
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}

h3 {
  color: white;
}

p {
  margin: 0 0 1em 0;
}

strong {
  color: var(--color-text-title);
  font-weight: var(--font-weight-bold);
}

a {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-default);
  text-decoration: none;
  color: inherit;
  cursor: pointer;

  transition: transform var(--transition-default),
  color var(--transition-default);
}



.main-stuff {
  width: 100%;
  min-height: 100vh;
  padding: var(--spacing-lg) var(--spacing-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.nav-link {
  position: fixed;
  top: 5px;
  left: 20px;
  z-index: 100;

  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-sm);
  color: var(--color-text-link);

  transform: scale(0.65);
  transform-origin: left center;

  font-size: var(--font-size-base);
}

.nav-link:hover {
  transform: scale(0.75);
  color: var(--color-link-hover);
}

.nav-link:active {
  transform: scale(0.7);
}

.blog {
  width: 100%;
  max-width: var(--content-max-width);
  background: transparent;
}
.blog__header {
  padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-xs) 35px;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: var(--spacing-md);
}

.blog__title {
  color: var(--color-text-title);
  font-family: var(--font-family-serif);
  font-style: oblique;
  font-size: var(--font-size-xl);
  margin: 0 0 var(--spacing-xs) 0;
  line-height: var(--line-height-heading);
}

.blog__meta {
  color: var(--color-text-meta);
  letter-spacing: var(--letter-spacing-large);
  font-weight: var(--font-weight-meta);
  font-size: var(--font-size-base);
  margin: 0;
}

.blog__content {
  color: var(--color-text-primary);
  padding: var(--spacing-md);
  line-height: var(--line-height-content);
  max-width: 100%;
  margin: 0 auto;
}

.blog__content p {
  margin-bottom: 1em;
  color: var(--color-text-primary);
}

.blog__content h2 {
  color: var(--color-text-title);
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}

.blog__content strong {
  color: var(--color-text-title);
  font-weight: var(--font-weight-bold);
}

.blog__list {
  margin: var(--spacing-md) 0;
  padding-left: 1.5em;
  list-style-position: outside;
}

.blog__list li {
  margin-bottom: 0.75em;
  color: var(--color-text-primary);
  line-height: var(--line-height-content);
}

.blog__list strong {
  color: var(--color-text-title);
}
.blog__footer {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 50;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  color: rgb(120, 117, 117);
  font-size: 0.9rem;
  transform: scale(0.8);
  transform-origin: bottom left;

  margin: 0;
  padding: 0;
}

.blog__footer p {
  margin: 0;
}

@media (max-width: 768px) {
  :root {
    --spacing-xl: 50px;
    --spacing-lg: 60px;
    --spacing-md: 30px;
    --font-size-base: 15px;
  }

  .main-stuff {
    padding: var(--spacing-md) var(--spacing-xs);
  }

  .blog__header {
    padding: var(--spacing-md) var(--spacing-xs) var(--spacing-xs) 20px;
  }

  .blog__content {
    padding: var(--spacing-sm);
  }

  .nav-link {
    transform: scale(0.75);
  }

  .blog__footer {
    transform: scale(0.9);
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-lg: 40px;
    --spacing-md: 20px;
    --font-size-base: 14px;
  }

  .blog__header {
    padding-left: 15px;
  }

  .nav-link {
    left: 10px;
    padding: var(--spacing-xs) var(--spacing-xs);
    transform: scale(1);
  }

  .blog__footer {
    transform: scale(1);
    left: 10px;
    bottom: 10px;
  }
}

/* =========================== blog.css MERGED WITH main.css ============================== */


/**
  you're currently inspecting lobby.css :P
 Author: d1vye (solo dev)
*/

:root {
  /* my taste in colors :> */
  --color-text-primary: rgb(154, 158, 158);
  --color-text-secondary: rgb(139, 142, 142);
  --color-text-hover: rgb(251, 251, 251);
  --color-accent-hover: #ffffff;
  --color-bg-page: rgb(255, 255, 255);
--bg-gradient: radial-gradient(ellipse 700px 700px at 100% 100%,
  #002966 0%,
  transparent 70%
),
radial-gradient(ellipse 700px 700px at 0% 0%,
  #002966 0%,
  transparent 70%
),
#0f1622;

  /* some spacings, gonna use for paddings, and perhaps margin too */
  --spacing-xs: 20px;
  --spacing-sm: 30px;

  /* the most satisfying thing ever */
  --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 0.9rem;

  --font-weight-normal: 400;
  --font-weight-bold: 700;

  --letter-spacing-default: 3px;
  --letter-spacing-large: 10px;
  --line-height-content: 1.6;

  /* ?ee? */
  --border-radius-md: 12px;
  --transition-default: 0.3s ease;

  /* Not gonna use much */
  --z-fixed-nav: 100;
}


* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
background: var(--bg-gradient);
  background-attachment: fixed;
  min-height: 100vh;
  margin: 0;
  background-position: center;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  line-height: var(--line-height-content);
}

a {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-default);
  text-decoration: none;
  color: inherit;
  cursor: pointer;

  transition: transform var(--transition-default),
              color var(--transition-default);
}

.main-stuff {
  width: 100%;
  min-height: 100vh;
  padding: var(--spacing-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-link {
  position: absolute;
  top: var(--spacing-xs);
  left: var(--spacing-xs);
  z-index: var(--z-fixed-nav);

  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-sm);
  color: var(--color-text-primary);

  transform: scale(1);
  transform-origin: left center;
}

.nav-link:hover {
  transform: scale(1.1);
  color: var(--color-accent-hover);
}

.nav-link:active {
  transform: scale(1.1);
}

.blogs {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.blog-item {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-md);
  color: var(--color-text-primary);

  transition: transform var(--transition-default),
              color var(--transition-default);
}

.blog-item:hover {
  transform: scale(1.05);
}

.blog-item__date {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  letter-spacing: var(--letter-spacing-large);
  margin: 0;
}

.blog-item__link {
  color: var(--color-text-primary);
  display: inline-block;

  transition: color var(--transition-default);
}

.blog-item__link:hover {
  color: var(--color-text-hover);
}

.blog-divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--color-text-secondary);
  margin: 0;
  opacity: 0.5;
}

@media (max-width: 768px) {
  :root {
    --spacing-xs: 15px;
    --spacing-sm: 25px;
    --font-size-base: 15px;
  }

  .main-stuff {
    padding: var(--spacing-sm) var(--spacing-xs);
  }

  a {
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-xs: 12px;
    --spacing-sm: 20px;
    --font-size-base: 14px;
  }

  .main-stuff {
    padding: var(--spacing-xs);
  }

  .nav-link {
    transform: scale(1);
  }

  .blogs {
    gap: var(--spacing-xs);
  }

  .blog-item {
    padding: var(--spacing-xs);
  }
}


:root[data-theme="light"] {
  --color-text-primary: rgb(51, 51, 51);
  --color-text-secondary: rgba(90, 90, 90, 0.85);
  --color-text-light: rgb(60, 60, 60);
  --color-text-emphasis: rgb(17, 17, 17);
  --color-text-hover: rgb(0, 0, 0);
  --color-accent-hover: #111111;

  --color-text-meta: #6b6b6b;
  --color-text-title: rgba(30, 30, 30, 0.95);
  --color-text-link: #4a4a4a;
  --color-link-hover: #000000;
  --color-border: rgba(0, 0, 0, 0.15);

  --color-bg-page: rgb(247, 247, 247);
  --color-shadow: rgba(24, 97, 110, 0.25);

  --bg-gradient: radial-gradient(ellipse 700px 700px at 100% 100%,
      #dce8ff 0%,
      transparent 70%
    ),
    radial-gradient(ellipse 700px 700px at 0% 0%,
      #dce8ff 0%,
      transparent 70%
    ),
    #f7f9fc;
}




.theme-toggle {
    position: fixed;

    top: 24px;
    right: 24px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid transparent;

    cursor: pointer;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    z-index: 9999;

    transition:
        transform .25s ease,
        background-color .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        color .35s ease;
}

html[data-theme="dark"] .theme-toggle {
    color: #ffffff;

    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.18);

    box-shadow:
        0 0 0 1px rgba(255,255,255,.05),
        0 12px 30px rgba(0,0,0,.45);
}

html[data-theme="light"] .theme-toggle {
    color: #111111;

    background: rgba(0,0,0,.05);
    border-color: rgba(0,0,0,.14);

    box-shadow:
        0 0 0 1px rgba(0,0,0,.04),
        0 12px 30px rgba(0,0,0,.12);
}

.theme-toggle:hover {
    transform: translateY(-3px) scale(1.05);
}

.theme-toggle:active {
    transform: scale(.94);
}

.theme-toggle svg {
    width: 22px;
    height: 22px;

    stroke-width: 2.25;
}

.theme-toggle__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    transform-origin: center;

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.34,1.56,.64,1);
}

.theme-toggle__icon--hide {
    opacity: 0;
    transform:
        scale(.2)
        rotate(-270deg);
}

.theme-toggle__icon--show {
    opacity: 1;
    transform:
        scale(1)
        rotate(0deg);
}


.theme-overlay {

    position: fixed;

    width: 50px;
    height: 50px;

    left: 0;
    top: 0;

    border-radius: 50%;

    pointer-events: none;

    transform:
        translate(-50%, -50%)
        scale(0);

    z-index: 9998;

    opacity: 1;

}
.theme-overlay--dark {

    background: #0b0b0b;

}
.theme-overlay--light {

    background: #ffffff;

}
.theme-overlay.expand {

    animation:
        themeExpand
        2s
        cubic-bezier(.19,1,.22,1)
        forwards;

}
.theme-overlay.shrink {

    animation:
        themeShrink
        2s
        cubic-bezier(.19,1,.22,1)
        forwards;

}
@keyframes themeExpand {

    from {

        transform:
            translate(-50%, -50%)
            scale(0);

    }

    to {

        transform:
            translate(-50%, -50%)
            scale(70);

    }

}

@keyframes themeShrink {

    from {

        transform:
            translate(-50%, -50%)
            scale(70);

        opacity: 1;

    }

    to {

        transform:
            translate(-50%, -50%)
            scale(90);

        opacity: 0;

    }

}


@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(32px) scale(0.98);
        filter: blur(8px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.animate-in {
    animation: pageEnter 800ms cubic-bezier(0.23, 1, 0.32, 1) both;
    will-change: transform, opacity, filter;
}

@media (prefers-reduced-motion: reduce) {
    .animate-in {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
    }
}

.stagger > * {
    opacity: 0; 
}

.stagger > * {
    animation: pageEnter 800ms cubic-bezier(0.23, 1, 0.32, 1) both;
    will-change: transform, opacity, filter;
}


.stagger > :nth-child(1) { animation-delay: 0ms; }
.stagger > :nth-child(2) { animation-delay: 60ms; }
.stagger > :nth-child(3) { animation-delay: 120ms; }
.stagger > :nth-child(4) { animation-delay: 180ms; }
.stagger > :nth-child(5) { animation-delay: 240ms; }
.stagger > :nth-child(6) { animation-delay: 300ms; }
.stagger > :nth-child(7) { animation-delay: 360ms; }
.stagger > :nth-child(8) { animation-delay: 420ms; }
.stagger > :nth-child(9) { animation-delay: 480ms; }
.stagger > :nth-child(10){ animation-delay: 540ms; }

:root {
    --enter-duration: 800ms;
    --enter-stagger: 60ms;
}

.stagger > * {
    animation-duration: var(--enter-duration);
}


.stagger-auto > * {
    animation: pageEnter var(--enter-duration) cubic-bezier(0.23, 1, 0.32, 1) both;
    animation-delay: calc(var(--enter-stagger) * var(--i));
}