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

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

*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
    position: relative;
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 30px 20px 10px;
    overflow: visible;
    z-index: 1;
}

.column {
    position: center;
    width: 100%;
    float: center;
    box-sizing: border-box;
}

/* For devices larger than 400px */
@media (min-width: 400px) {
    .container {
        width: 85%;
        padding: 30px;
    }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
    .container {
        width: 80%;
        max-width: 600px;
    }
    .column,
    .columns {
        margin-left: 0;
    }
    .column:first-child,
    .columns:first-child {
        margin-left: 0;
    }
}


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

:root {
    --bgColor: #0a0a0a;
    --bgColor2: #1a1a2e;
    --accentColor: #00e5ff;
    --accentPink: #ff00ff;
    --accentPurple: #9e5ce0;
    --textColor: #e0e0e0;
    --font: 'Roboto', sans-serif;
    --fontDisplay: 'Jersey 25', monospace;
    --fontUi: 'Science Gothic', 'Oxanium', sans-serif;
    --fontMono: 'Oxanium', monospace;
    --glassBg: rgba(26, 26, 46, 0.4);
    --glassBorder: rgba(0, 229, 255, 0.2);
    --delay: .3s;
}


/* Background
–––––––––––––––––––––––––––––––––––––––––––––––––– */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: var(--font);
    background: #0a0a0a;
    background-image:
        radial-gradient(ellipse at 20% 10%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(255, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 40%);
    opacity: 0;
    animation: 1s ease-out var(--delay) 1 transitionAnimation;
    animation-fill-mode: forwards;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    color: var(--textColor);
}


/* Scanlines overlay
–––––––––––––––––––––––––––––––––––––––––––––––––– */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.08) 2px,
        rgba(0, 0, 0, 0.08) 4px
    );
}


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

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


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1 {
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 400;
    font-family: var(--fontDisplay);
    color: var(--accentColor);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}
h1 { font-size: 28px; line-height: 1.2; letter-spacing: 0;}

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

p {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--textColor);
}


/* Profile image / avatar
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.profile-img {
    border: 2px solid var(--accentColor);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
    margin-bottom: 16px;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
    color: var(--accentColor);
    text-decoration: none;
}
a:hover {
    color: var(--accentColor);
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

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


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
    padding: .2rem .5rem;
    margin: 0 .2rem;
    font-size: 90%;
    white-space: nowrap;
    background: var(--bgColor2);
    border: 1px solid var(--glassBorder);
    border-radius: 4px;
    color: var(--accentColor);
}
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 var(--glassBorder);
}


/* Scrollbar CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
* {
    scrollbar-width: thin;
    scrollbar-color: #00e5ff #1a1a2e;
}

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

*::-webkit-scrollbar-track {
    background: #1a1a2e;
}

*::-webkit-scrollbar-thumb {
    background-color: #00e5ff;
    border-radius: 4px;
    border: 2px solid #1a1a2e;
}


/* Credit footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.credit-txt {
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    font-family: var(--fontUi);
    color: var(--textColor);
}

.credit-icon {
    display: none;
    right: 5px;
}
.credit-footer {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    z-index: 2;
}

.credit-txt-clr{
    color: var(--textColor) !important;
}