/* /Components/Components/FancyButton.razor.rz.scp.css */
.button[b-9qwc1hr9v1] {
    position: relative;
    width: 150px;
    height: 40px;
    background-color: transparent;
    border: none;
    color: var(--text);
    font-size: 15px;
    border-radius: 10px;
    cursor: pointer;
    max-width: 100%;
    overflow: hidden;
    z-index: 1;
    
    &:before {
        content: '';
        position: absolute;
        background-color: hsl(217, 41%, 15%);
        border-radius: 50%;
        width: 150px;
        height: 150px;
        transform: scale(0);
        transition: transform 200ms ease-in-out;
        z-index: -1;
        
        top: 50%;
        left: 50%;
        translate: -50% -50%;
    }
}

button svg[b-9qwc1hr9v1] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

button rect[b-9qwc1hr9v1] {
    stroke: hsl(0, 0%, 70%);
    stroke-dasharray: 460;
    stroke-dashoffset: 460;
    stroke-width: 2px;
    transition: stroke-dashoffset 500ms ease-in-out;
}

button:hover rect[b-9qwc1hr9v1] {
    stroke-dashoffset: 0;
}

button:hover[b-9qwc1hr9v1]:before {
    transform: scale(1);
}
/* /Components/Components/ProjectView.razor.rz.scp.css */
.border[b-nbrsvw2oh0] {
    position: relative;
    width: 400px;
    height: 500px;
    background: var(--gradient-straight);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 40px -10px var(--primary);
    opacity: 0;
    animation: animate-in-b-nbrsvw2oh0 200ms forwards;
    animation-delay: calc(var(--index) * 200ms);
}

@keyframes animate-in-b-nbrsvw2oh0 {
    from {
        opacity: 0;
    }
    
    to {
        opacity: 1;
    }
}

.shell[b-nbrsvw2oh0] {
    position: absolute;
    inset: 1px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    background-color: var(--background);
    border-radius: 30px;
}

img[b-nbrsvw2oh0] {
    width: 100%;
    height: 190px;
    border-radius: calc(30px - 1rem);
    object-fit: cover;
}

h3[b-nbrsvw2oh0] {
    margin-block: 10px;
    font-size: 1.25rem;
    font-weight: normal;
}

.status[b-nbrsvw2oh0], .language-container i[b-nbrsvw2oh0], p[b-nbrsvw2oh0] {
    color: var(--desc-color);
}

.info[b-nbrsvw2oh0] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.language-container[b-nbrsvw2oh0] {
    margin-bottom: 10px;
    display: flex;
    gap: 5px;
    font-size: 20px;
}

p[b-nbrsvw2oh0] {
    margin: 0;
}

.button-container[b-nbrsvw2oh0] {
    margin-top: auto;
    display: flex;
    justify-content: center;
}
/* /Components/Components/TechnologyView.razor.rz.scp.css */
.technology[b-b3i377co5s] {
    margin-bottom: 2rem;
    
    .tech-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;

        .tech-name {
            margin: 0;
            font-size: 20px;
            font-weight: normal;
        }

        .tech-level[b-b3i377co5s] {
            align-self: flex-end;
            color: var(--desc-color);
        }
    }

    .tech-progress[b-b3i377co5s] {
        height: 10px;
        border-radius: 5px;
        background: var(--gradient);
        box-shadow: 0 3px 10px 1px var(--primary-muted);
        transition: width 200ms ease-out;
        width: 0;

        &.level-0 {
            --width: 33%;
        }

        &.level-1[b-b3i377co5s] {
            --width: 66%;
        }

        &.level-2[b-b3i377co5s] {
            --width: 100%;
        }

        &.in-view[b-b3i377co5s] {
            animation: slider-in-b-b3i377co5s 500ms forwards ease-out;
        }
    }
}

@keyframes slider-in-b-b3i377co5s {
    from {
        width: 0;
    }

    to {
        width: var(--width);
    }
}
/* /Components/Components/TimestampView.razor.rz.scp.css */
.timestamp[b-im1er6nhvl] {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    opacity: 0;

    h2 {
        font-size: 20px;
        margin: 0;
        font-weight: normal;
    }

    span[b-im1er6nhvl] {
        box-sizing: border-box;
        color: var(--desc-color);
        font-size: 14px;
        padding-right: 10px;
    }

    &[b-im1er6nhvl]:after {
        content: '';
        width: 15px;
        height: 15px;
        background: var(--gradient-angled);
        border-radius: 50%;
        box-shadow: 0 3px 10px 1px var(--primary-muted);

        position: absolute;
        top: 45px;
    }

    &[b-im1er6nhvl]:before {
        content: '';
        width: 0;
        height: 3px;
        background-color: #FFF;
        top: 51px;
        position: absolute;
        display: var(--show-bar, block);
    }
}

.timestamp.in-view[b-im1er6nhvl] {
    animation: fade-in-b-im1er6nhvl 200ms forwards calc(var(--index) * 200ms) ease-out;
    
    &:before {
        animation: timestamp-in-b-im1er6nhvl 500ms forwards calc((var(--index) + 1) * 200ms) ease-in-out;
    }
}

@media screen and (max-width: 750px) {
    .timestamp[b-im1er6nhvl] {
        gap: 15px;
        padding-left: 30px;
        box-sizing: border-box;
        animation: none !important;
        opacity: 1;

        span {
            margin-bottom: 50px;
        }

        &[b-im1er6nhvl]:after {
            top: 5px;
            left: -5px;
        }

        &[b-im1er6nhvl]:before {
            top: 5px;
            left: 1px;
            width: 3px;
            height: 100%;
            animation: none !important;
        }
    }
}

@keyframes fade-in-b-im1er6nhvl {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes timestamp-in-b-im1er6nhvl {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}
/* /Components/Layout/FooterLinks.razor.rz.scp.css */
footer[b-oh7qsr2x3r] {
    display: flex;
    margin-top: auto;
    margin-bottom: 2rem;
    padding-top: 5rem;
    justify-content: space-between;
    margin-inline: 12.5vw;
}

.title[b-oh7qsr2x3r] {
    background: var(--gradient);
    background-clip: text;
    color: transparent;
    user-select: none;
    font-weight: 500;
}

a[b-oh7qsr2x3r] {
    text-decoration: none;
}

.socials[b-oh7qsr2x3r] {
    display: flex;
    gap: 0.75rem;
}

.socials a[b-oh7qsr2x3r] {
    height: 25px;
    display: flex;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
main[b-cegz33sh5z] {
    background-color: var(--background);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.nav-box[b-cegz33sh5z] {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
}

.content[b-cegz33sh5z] {
    flex-grow: 1;
    margin-inline: 12.5vw;
}
/* /Components/Layout/Navigation.razor.rz.scp.css */
.navigation[b-2wbeqn8sa1] {
    display: flex;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    background-color: var(--background);
    border-bottom: 1px solid var(--border-color);
    padding-inline: 0.5rem;
}

.links[b-2wbeqn8sa1] {
    display: flex;
    gap: 1rem;
}

.navigation > a[b-2wbeqn8sa1] {
    text-decoration: none;
    font-size: 1.25rem;
}

.socials[b-2wbeqn8sa1] {
    display: flex;
    gap: 0.75rem;
}

.socials a[b-2wbeqn8sa1] {
    height: 25px;
    display: flex;
}

.links[b-2wbeqn8sa1]  a {
    text-decoration: none;
    position: relative;

    &:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--text);
        visibility: hidden;
        transform: scaleX(0);
        transform-origin: left;
        transition: all 0.3s ease-in-out;
    }
}

.links[b-2wbeqn8sa1]  a.active::before {
    visibility: visible;
    transform: scaleX(1);
}

.links[b-2wbeqn8sa1]  a:hover::before {
    visibility: visible;
    transform: scaleX(1);
}

@media screen and (max-width: 750px) {
    a:not(.nav-link)[b-2wbeqn8sa1] {
        display: none;
    }
    
    .links[b-2wbeqn8sa1] {
        margin-inline: auto;
    }
}
/* /Components/Pages/AboutPage.razor.rz.scp.css */
#about[b-g2hf1rotwr] {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.title[b-g2hf1rotwr] {
    margin-block: 5rem 2rem;
}

.timeline[b-g2hf1rotwr]  .timestamp:last-of-type {
    --show-bar: none;
}

.timeline[b-g2hf1rotwr] {
    display: flex;
    margin-top: 30px;
}

@media screen and (max-width: 750px) {
    #about[b-g2hf1rotwr] {
        grid-template-columns: unset;
        grid-template-rows: repeat(2, max-content);
    }

    .timeline[b-g2hf1rotwr] {
        flex-direction: column-reverse;
    }

    .timeline[b-g2hf1rotwr]  .timestamp:last-of-type {
        --show-bar: block;
    }

    .timeline[b-g2hf1rotwr]  .timestamp:first-of-type {
        --show-bar: none;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
#hero[b-eq8ggglbk3] {
    height: 100vh;
    box-sizing: border-box;

    h2 {
        margin-top: 20vh;
        font-size: 45px;
        line-height:70px;
        position: relative;

        #welcome {
            background: var(--gradient);
            background-clip: text;
            color: transparent;
        }

        #jobs[b-eq8ggglbk3] {
            position: relative;

            &:after {
                content: '';
                position: absolute;
                left: calc(100% + 5px);
                top: 0;
                width: 20px;
                height: 100%;
                background-color: var(--text);
                animation: blink-b-eq8ggglbk3 800ms infinite;
            }
        }
    }

    p[b-eq8ggglbk3] {
        font-size: 18px;
        color: var(--desc-color);
        position: relative;
    }

    a[b-eq8ggglbk3] {
        display: block;
        margin-top: 40px;
        height: 60px;
        width: 150px;
        background: var(--gradient);
        border-radius: 30px;
        font-size: 15px;
        text-align: center;
        line-height: 60px;
        text-decoration: none;

        box-shadow: 0 0 40px -5px var(--primary);
    }
}

.title[b-eq8ggglbk3] {
    display: inline;
    margin-right: 10px;
}

#projects[b-eq8ggglbk3] {
    #projects-wrapper {
        display: flex;
        flex-wrap: wrap;
        margin-top: 70px;
        justify-content: space-evenly;
        gap: 70px;
    }
}

#technologies[b-eq8ggglbk3] {
    margin-top: 300px;
    
    .technologies-wrapper {
        margin-top: 30px;
    }
}

#about[b-eq8ggglbk3] {
    margin-top: 150px;
}

.timeline[b-eq8ggglbk3]  .timestamp:last-of-type {
    --show-bar: none;
}

.timeline[b-eq8ggglbk3] {
    display: flex;
    margin-top: 30px;
}

a:not(#main-action)[b-eq8ggglbk3] {
    text-decoration: none;
    position: relative;

    &:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--text);
        visibility: hidden;
        transform: scaleX(0);
        transform-origin: left;
        transition: all 0.3s ease-in-out;
    }
}

a:not(#main-action):hover[b-eq8ggglbk3]::before {
    visibility: visible;
    transform: scaleX(1);
}

@keyframes blink-b-eq8ggglbk3 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 750px) {
    #hero > h2[b-eq8ggglbk3] {
        font-size: 2rem;
        line-height: 2.5rem;
        margin-top: 10vh;
    }

    .timeline[b-eq8ggglbk3] {
        flex-direction: column-reverse;
    }

    .timeline[b-eq8ggglbk3]  .timestamp:last-of-type {
        --show-bar: block;
    }

    .timeline[b-eq8ggglbk3]  .timestamp:first-of-type {
        --show-bar: none;
    }
}
/* /Components/Pages/ProjectsPage.razor.rz.scp.css */
.project-container[b-5k7vl4jvau] {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: space-evenly;
}
/* /Components/Pages/TechnologiesPage.razor.rz.scp.css */
#tech-projects[b-n7htjdunmm] {
    margin-top: 50px;
    position: relative;

    .chart {
        display: flex;
        margin-top: 30px;

        .chart-container {
            width: 500px;
            height: 500px;
        }
    }

    .artwork[b-n7htjdunmm] {
        top: 40px;
    }
}

.home-section h2[b-n7htjdunmm] {
    margin-block: 5rem 2rem;
}

#additional[b-n7htjdunmm] {
    #skills-wrapper {
        display: flex;
        justify-content: space-evenly;
        gap: 20px;
        margin-top: 30px;
        flex-wrap: wrap;

        .skill {
            display: flex;
            gap: 10px;
            align-items: center;

            .dot {
                width: 15px;
                height: 15px;
                background: var(--gradient);
                box-shadow: 0 3px 10px 1px var(--primary-muted);
                border-radius: 50%;
            }

            h3[b-n7htjdunmm] {
                font-weight: normal;
                margin: 0;
                font-size: 20px;
            }
        }
    }
}
