* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: aliceblue;
    overflow-x: hidden;
    overflow-y: scroll;
}

header {
    position: fixed;
    z-index: 10;
    width: 100vw;
    padding: 1vh 2vh;
    background-color: rgba(65, 67, 68, 0.2);
    backdrop-filter: blur(25px);
}

section {
    min-height: 100vh;
    width: 100vw;
}

footer {
    display: flex;
    justify-content: center;
    width: 100vw;
    padding: 4vw 2vw 2vw 2vw;
    background: linear-gradient(180deg, transparent, rgba(46, 47, 47, 0.2) 40%);
}

/* -- global -- */

.highlight {
    font-weight: 600;
    background: linear-gradient(0deg, #eeff00, #00aeff, #ff00f2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-ang {
    font-weight: 600;
    background: linear-gradient(45deg, #eeff00, #00aeff, #ff00f2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* -- nav bar -- */

#navBar.hidden {
    transform: translateY(-80px);
    background-color: rgba(0, 0, 0, 0);
    & .title, .cetegories, .contact, :after {
        filter: blur(10px);
        opacity: 0;
    }
}

#navBar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    filter: blur(0px);
    opacity: 1;
    transition: ease 0.4s;
    #nav-show {
        position: absolute;
        left: calc(50vw - (4px / 2) - 40px);
        bottom: -15px;
        padding: 4px;
        width: 80px;
        border-radius: 10px;
        transition: ease 0.25s;
        cursor: pointer;
        & .shadow {
            background: linear-gradient(45deg, #eeff00ff, #00aeffff, #ff00f2ff);
            filter: brightness(0) blur(5px);
            transition: ease 0.25s;
            cursor: pointer;
        }
        & .background, .shadow {
            content: '';
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            position: absolute;
            border-radius: 15px;
            transition: 0.5s ease;
            backdrop-filter: blur(15px);
            background: linear-gradient(45deg, #eeff0020, #00aeff20, #ff00f220);
            background-size: 200% 400%;
            animation: gradientShift 8s ease infinite;
            cursor: pointer;
        }
        & .border {
            content: '';
            top: 0;
            left: 0;
            height: calc(100% - 1px);
            width: calc(100% - 1px);
            position: absolute;
            border-radius: 15px;
            border: 1px solid transparent;
            background: linear-gradient(45deg, #eeff0020, #00aeff20, #ff00f220);
            background-size: 200% 400%;
            mask: linear-gradient(#fff 0 0) padding-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: destination-out;
            mask-composite: exclude;
            animation: gradientShift 8s ease infinite;
            cursor: pointer;
        }
        &:hover {
            width: 110px;
            padding: 6px;
            bottom: calc(-15px - 3px);
            left: calc(50vw - (4px / 2) - 55px);
            & .shadow {
                opacity: 1;
                filter: brightness(1) blur(5px);
            }
        }
    }
    & .title {
        position: relative;
        font-size: 45px;
        font-weight: 600;
        width: fit-content;
        transition: ease 0.2s;
        &::after {
            content: '';
            position: absolute;
            bottom: 8%;
            left: 0;
            height: 6%;
            width: 100%;
            border-radius: 90px;
            background: linear-gradient(90deg, #eeff0088, #00aeff88, #ff00f288);
        }
    }
    & .cetegories {
        position: absolute;
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100vw;
        transition: ease 0.2s;
        & .container {
            display: flex;
            flex-direction: row;
            justify-content: space-evenly;
            align-items: center;
            width: 50vw;
            gap: 1vw;
            & .sub {
                position: relative;
                border-radius: 15px;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 0.7vh 2vh;
                transition: ease 0.5s;
                cursor: pointer;
                font-size: 18px;
                font-weight: 600;
                &::after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    height: 100%;
                    width: 100%;
                    border-radius: 90px;
                    background: linear-gradient(45deg, #eeff0020, #00aeff20, #ff00f220);
                    background-size: 200% 400%;
                    animation: gradientShift 8s ease infinite;
                    filter: grayscale(1);
                    transition: ease 0.5s;
                }
                &:hover {
                    flex-grow: 1;
                    &::after {
                        filter: grayscale(0.6);
                    }
                }
            }
            & .growed {
                flex-grow: 1;
                &::after {
                    filter: grayscale(0);
                }
            }
        }
    }
    & .contact {
        display: flex;
        flex-direction: row;
        gap: 10px;
        z-index: 2;
        transition: ease 0.2s;
        & .links-logo {
            height: 35px;
            object-fit: cover;
            border-radius: 10px;
            cursor: pointer;
            opacity: 0.8;
        }
    }
}

/* -- Main pages -- */

#experience, #projects, #about .title {
    display: flex;
    flex-direction: column;
    & .main {
        position: relative;
        font-size: 45px;
        font-weight: 600;
        width: fit-content;
        &::after {
            content: '';
            position: absolute;
            bottom: 8%;
            left: 0;
            height: 6%;
            width: 100%;
            border-radius: 90px;
            background: linear-gradient(90deg, #eeff0088, #00aeff88, #ff00f288);
        }
    }
    & .desc {
        font-size: 20px;
        color: rgba(240, 248, 255, 0.598);
        font-style: italic;
    }
}

#home {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 10vw;
    & .quick-desc {
        display: flex;
        flex-direction: column;
        gap: 4vh;
        width: 35vw;
        & .names {
            font-size: 65px;
            letter-spacing: 0.5vw;
            font-weight: 600;
            & .name {
                width: fit-content;
                position: relative;
                &::after {
                    content: '';
                    position: absolute;
                    bottom: 8%;
                    left: 0;
                    height: 6%;
                    width: 100%;
                    border-radius: 90px;
                    background: linear-gradient(90deg, #eeff0088, #00aeff88, #ff00f288);
                }
            }
        }
        & .description {
            font-size: 26px;
        }
    }
    & .image-zone {
        display: flex;
        position: relative;
        & .cards {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: visible;
            & .cardage {
                position: absolute;
                background: linear-gradient(45deg, #eeff0020, #00aeff20, #ff00f220);
                background-size: 200% 400%;
                animation: gradientShift 16s ease infinite;
                padding: 1vw;
                border-radius: 15px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                backdrop-filter: blur(10px);
                width: 300px;
                transition: 
                    ease 0.3s backdrop-filter,
                    ease 0.3s transform;
                cursor: grab;
                & div {
                    cursor: grab;
                }
                & .title {
                    font-size: x-large;
                    font-weight: 600;
                }
                & .note {
                    font-size: small;
                    font-style: italic;
                    color: rgba(240, 248, 255, 0.598);
                }
                & .body {
                    font-size: large;
                    margin-top: 1vh;
                }
                &:hover {
                    backdrop-filter: blur(25px);
                    transform: scale(1.05);
                }
                &:active {
                    cursor: grabbing;
                    & div {
                        cursor: grabbing;
                    }
                }
            }
        }
        & .imagur {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            height: 45vh;
            filter: brightness(1.2);
            gap: 2vh;
            & .text {
                font-size: 16px;
                font-weight: 400;
                font-style: italic;
                color: rgba(44, 50, 55, 0.3);
                text-shadow: 0 0 10px rgba(44, 50, 55, 0.4);
            }
        }
    }
}

#experience {
    flex-direction: column;
    justify-content: center;
    padding-left: 5vw;
    padding: 20vh;
    padding-bottom: 30vh;
    background: linear-gradient(0deg, transparent, rgba(21, 21, 21, 0.5) 15%, rgba(21, 21, 21, 0.5) 85%, transparent);
    gap: 5vh;
    & .block {
        font-size: 36px;
        font-weight: 600;
        & .mainer {
            margin-left: 4vw;
            position: relative;
            width: fit-content;
            display: flex;
            flex-direction: row;
            gap: 1vw;
        }
        & .descri {
            margin-left: 4vw;
            font-size: 18px;
            font-weight: 400;
            font-style: italic;
            color: rgba(240, 248, 255, 0.6);
        }
    }

    & .block .cards {
        position: relative;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1vw;
        padding: 1vw 0.5vw;
        width: 100%;
        & .card {
            position: relative;
            display: flex;
            flex-direction: row;
            gap: 1vw;
            padding: 0.8vw 1vw;
            border-radius: 15px;
            align-items: center;
            justify-content: center;
            & img {
                height: 50px;
            }
            & .info {
                display: flex;
                flex-direction: column;
                border-radius: 15px;
                & .name {
                    font-size: 22px;
                    font-weight: 600;
                }
                & .desc {
                    font-size: 16px;
                    font-weight: 400;
                    font-style: italic;
                    color: rgba(240, 248, 255, 0.598);
                }
            }
            &::before {
                content: "";
                position: absolute;
                border-radius: 15px; 
                padding: 1px; 
                mask: 
                  linear-gradient(#000 0 0) content-box,
                  linear-gradient(#000 0 0);
                mask-composite: exclude; 
            }
        }
    }

    & .agro .cards .card {
        background: radial-gradient(ellipse at left top, rgba(47, 163, 57, 0.4) 0%, #212121 60% ,#212121 100%);
        &::before {
            inset: 0;
            background: linear-gradient(340deg, #212121 50%, rgb(47, 163, 57)); 
        }
    }

    & .student .cards .card {
        background: radial-gradient(ellipse at left top, rgba(47, 107, 163, 0.4) 0%, #212121 60% ,#212121 100%);
        &::before {
            inset: 0;
            background: linear-gradient(340deg, #212121 50%, rgb(47, 107, 163)); 
        }
    }

    & .dev .cards .card {
        background: radial-gradient(ellipse at left top, rgba(159, 163, 47, 0.4) 0%, #212121 60% ,#212121 100%);
        &::before {
            inset: 0;
            background: linear-gradient(340deg, #212121 50%, rgb(159, 163, 47)); 
        }
    }

    & .other .cards .card {
        background: radial-gradient(ellipse at left top, rgba(163, 47, 111, 0.4) 0%, #212121 60% ,#212121 100%);
        &::before {
            inset: 0;
            background: linear-gradient(340deg, #212121 50%, rgb(163, 47, 111)); 
        }
    }
}

#projects {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5vw;
    gap: 5vh;

    padding: 20vh;

    & .cards {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2vw;
        padding: 1vw;
        align-items: flex-start;
        & .carder {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-radius: 20px;
            overflow: hidden;
            gap: 6vh;
            transition: ease 0.4s;
            border: 2px rgba(65, 67, 68, 0.4) solid;
            & .bg {
                position: absolute;
                z-index: -1;
                width: 100%;
                height: 100%;
                object-fit: cover;
                top: 0;
                left: 0;
            }
            & .box-blur {
                background-color: rgba(80, 82, 83, 0.2);
                border: 1px rgba(65, 67, 68, 0.15) solid;
                backdrop-filter: blur(10px);
                border-radius: 15px;
                align-items: center;
            }
            & .head {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                height: fit-content;
                padding: 0.5vh;
                font-size: 24px;
                & .name {
                    display: flex;
                    white-space: nowarp;
                    font-weight: 600;
                    padding: 6px 12px;
                }
                & .see-website {
                    display: flex;
                    padding: 8px 10px;
                    transition: ease 0.2s; 
                    & .button {
                        font-family: 'Material Symbols Rounded';
                        background: linear-gradient(45deg, #eeff00, #00aeff, #ff00f2);
                        background-clip: text;
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: white;
                        transition: ease 0.2s;
                    }
                }
            }
            & .desc {
                margin: 0.5vh;
                padding: 1vh;
                display: flex;
                flex-direction: column;
                align-items: start;
                gap: 5px;
                font-weight: 400;
                font-style: normal;
                color: rgb(240, 248, 255);
                transition: ease 0.4s;
                cursor: pointer;
                & .knoledge {
                    cursor: pointer;
                    display: flex;
                    flex-direction: row;
                    gap: 5px;
                    & .comp {
                        background-color: rgba(200, 200, 200, 0.4);
                        border: 1px rgba(200, 200, 200, 0.2) solid;
                        padding: 3px 8px;
                        border-radius: 10px;
                        font-size: 16px;
                        cursor: pointer;
                    }
                }
                & .text {
                    font-size: 18px;
                    cursor: pointer;
                }
            }
            &::after {
                content: '';
                position: absolute;
                inset: 0;
                z-index: -1;
                height: 101%;
                backdrop-filter: blur(100px);
                mask-image: linear-gradient(to bottom, transparent 40%, #212121);
                mask-repeat: no-repeat;
                mask-size: cover;
                transition: ease 0.2s;
            }
            &:hover {
                gap: 8vh;
                cursor: pointer;
                & .head {
                    cursor: pointer;
                    & .see-website {
                        cursor: pointer;
                        backdrop-filter: blur(15px);
                        & .button {
                            cursor: pointer;
                            -webkit-text-fill-color: transparent;
                        }
                    }
                }
                & .desc {
                    cursor: pointer;
                    opacity: 0;
                    filter: blur(25px);
                    transform: translateY(50px);
                }
                &::after {
                    cursor: pointer;
                    backdrop-filter: blur(0);
                }
            }
        }
    }
}

#about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20vh;
    padding-bottom: 30vh;
    background: linear-gradient(0deg, transparent, rgba(21, 21, 21, 0.5) 15%, rgba(21, 21, 21, 0.5) 85%, transparent);
    gap: 4vh;
    & .contained {
        display: flex;
        flex-direction: row;
        gap: 20px;
        height: 800px;
        & .line {
            position: relative;
            display: flex;
            justify-content: center;
            height: 105%;
            padding-left: 4px;
            padding-right: 4px;
            border-radius: 10px;
            background: linear-gradient(180deg, #eeff00 0%, #00aeff 45%, #ff00f2 90%, transparent 100%);
        }
        & .parags {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            & .inner {
                position: relative;
                display: flex;
                flex-direction: row;
                align-items: center;
                & .date {
                    position: absolute;
                    left: -54px;
                    min-width: 60px;
                    padding: 4px 10px;
                    background-color: rgba(81, 82, 83, 0.3);
                    border: 1px rgba(65, 67, 68, 0.15) solid;
                    backdrop-filter: blur(5px);
                    border-radius: 10px;
                    text-align: center;
                    font-weight: 600;
                    color: white;
                }
                & .parag {
                    display: flex;
                    flex-direction: column;
                    gap: 5px;
                    margin-left: 2vw;
                    width: 50vw;
                    & .text {
                        font-size: 20px;
                    }
                    & .link {
                        cursor: pointer;
                        color: #0077ff;
                        &:hover {
                            text-decoration: underline;
                        }
                    }
                    & .bigger {
                        font-size: 28px;
                        font-weight: 600;
                    }
                    & .smaller {
                        font-size: 16px;
                        color: rgba(240, 248, 255, 0.598);
                    }
                    & .events {
                        display: flex;
                        flex-direction: row;
                        align-items: center;
                        gap: 8px;
                        & .mention {
                            display: flex;
                            flex-direction: row;
                            background-color: rgba(81, 82, 83, 0.25);
                            border: 1px rgba(65, 67, 68, 0.1) solid;
                            backdrop-filter: blur(5px);
                            width: fit-content;
                            padding: 3px 8px;
                            border-radius: 10px;
                            gap: 5px;
                        }
                    }
                }
            }
        }
    }

    & .secondary {
        font-size: 36px;
        font-weight: 600;
        margin-left: 4vw;
        margin-top: 4vh;
        position: relative;
        width: fit-content;
        display: flex;
        flex-direction: row;
        gap: 1vw;
    }
    & .diplomas {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2vw;
        & .diploma {
            transition: 0.5s ease;
            position: relative;
            height: fit-content;
            border-radius: 15px;
            & .container {
                position: relative;
                display: flex;
                flex-direction: column;
                padding: 2vh 2.5vh;
                font-size: 20px;
                border-radius: 15px;
                gap: 1vh;
                backdrop-filter: blur(25px);
                white-space: nowrap;
                &::after {
                    content: '';
                    top: 0;
                    left: 0;
                    height: 100%;
                    width: 100%;
                    position: absolute;
                    border-radius: 15px;
                    transition: 0.5s ease;
                    background: linear-gradient(45deg, #eeff0015, #00aeff15, #ff00f215);
                    background-size: 200% 400%;
                    animation: gradientShift 16s ease infinite;
                }
                &::before {
                    content: '';
                    top: 0;
                    left: 0;
                    height: calc(100% - 1px);
                    width: calc(100% - 1px);
                    position: absolute;
                    border-radius: 15px;
                    border: 1px solid transparent;
                    background: linear-gradient(45deg, #eeff0020, #00aeff20, #ff00f220);
                    background-size: 200% 400%;
                    mask: linear-gradient(#fff 0 0) padding-box,
                        linear-gradient(#fff 0 0);
                    -webkit-mask-composite: destination-out;
                    mask-composite: exclude;
                    animation: gradientShift 16s ease infinite;
                }
                & .ttle {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    gap: 1vh;
                    font-size: 24px;
                    font-weight: 600;
                    & a {
                        display: flex;
                        align-items: center;
                        font-size: 18px;
                        border-radius: 10px;
                        padding: 4px 10px;
                        background-color: rgba(80, 82, 83, 0.2);
                        border: 1px rgba(65, 67, 68, 0.15) solid;
                        backdrop-filter: blur(10px);
                    }
                }
                & .infos {
                    display: flex;
                    flex-direction: column;
                    & .info {
                        display: flex;
                        flex-direction: row;
                        align-items: center;
                        gap: 1vw;
                        margin-left: 1vh;
                        font-weight: 400;
                        color: rgba(240, 248, 255, 0.7);
                        & .logo {
                            font-size: 24px;
                            font-family: 'Material Symbols Rounded';
                        }
                        & .name {
                            display: flex;
                            flex-direction: row;
                            font-size: 17px;
                            gap: 5px;
                        }
                    }
                }
            }
            & span {
                position: absolute;
                width: 100%;
                height: 100%;
                border-radius: 10px;
                transition: 0.5s ease;
                opacity: 0;
                background: linear-gradient(45deg, #eeff0015, #00aeff15, #ff00f215);
                background-size: 200% 400%;
            }
            & span:nth-child(1) {
                top: 0;
                right: 0;
            }
            & span:nth-child(2) {
                bottom: 0;
                left: 0;
            }
            &:hover {
                transform: scale(1.05);
                transition: 0.5s ease;
                & .container::after{
                    opacity: 0.3;
                }
                & span {
                    width: 50%;
                    height: 50%;
                    opacity: 1;
                    transition: 0.5s ease;
                    animation: 
                        animateBubble 3s ease-in-out infinite,
                        gradientShift 16s ease infinite;
                }
                & span:nth-child(1) {
                    top: -15px;
                    right: -15px;
                    animation-delay: -1.5s;
                }
                & span:nth-child(2) {
                    bottom: -10px;
                    left: -10px;
                }
            }
        }
    }
}

#contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3vw;
    padding: 20vh;
    & .head {
        display: flex;
        flex-direction: column;
        gap: 4vh;

        background-color: rgba(65, 67, 68, 0.1);
        border: 1px rgba(65, 67, 68, 0.2) solid;
        backdrop-filter: blur(50px);

        border-radius: 15px;
        padding: 2vh;
        width: 60vw;
        & .top {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 2vw;
            & .photo-de-profile {
                object-fit: cover;
            }
            & .info {
                display: flex;
                flex-direction: column;
                & .name {
                    position: relative;
                    font-size: 45px;
                    font-weight: 600;
                    width: fit-content;
                    &::after {
                        content: '';
                        position: absolute;
                        bottom: 8%;
                        left: 0;
                        height: 6%;
                        width: 100%;
                        border-radius: 90px;
                        background: linear-gradient(90deg, #eeff0088, #00aeff88, #ff00f288);
                    }
                }
                & .work {
                    font-size: 20px;
                    color: rgba(240, 248, 255, 0.598);
                    font-style: italic;
                }
            }
        }
        & .bottom {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 2vh;
            justify-content: center;
            & .info {
                position: relative;
                display: flex;
                flex-direction: row;
                padding: 10px 16px;
                border-radius: 15px;
                background-color: rgba(65, 67, 68, 0.1);
                gap: 1vw;
                align-items: center;
                & .logo {
                    font-family: 'Material Symbols Rounded';
                    font-weight: 600;
                    font-size: larger;
                }
                & .service {
                    font-weight: 600;
                }
            }
            & .special {
                position: relative;
                &::before {
                    content: '';
                    top: 0;
                    left: 0;
                    height: calc(100% - 1px);
                    width: calc(100% - 1px);
                    position: absolute;
                    border-radius: 15px;
        
                    border: 1px solid transparent;
        
                    background: linear-gradient(45deg, #eeff0030, #00aeff30, #ff00f230);
                    background-size: 200% 400%;
                    mask: linear-gradient(#fff 0 0) padding-box,
                        linear-gradient(#fff 0 0);
                    -webkit-mask-composite: destination-out;
                    mask-composite: exclude;
                    animation: gradientShift 16s ease infinite;
                }
            }
        }
    }
    & .body {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        background-color: rgba(65, 67, 68, 0.1);
        border: 1px rgba(65, 67, 68, 0.2) solid;
        backdrop-filter: blur(50px);
        gap: 5px;
        border-radius: 15px;
        padding: 2vh 3vh;
        font-size: 20px;
        text-wrap: nowrap;
        overflow: visible;
        #confetti-generator {
            font-weight: 600;
            transition: ease 0.2s;
            cursor: pointer;
            background: linear-gradient(45deg, #eeff00, #00aeff, #ff00f2);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }
    & .feet {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2vw;
        width: 60vw;
        & .card {
            display: flex;
            flex-direction: row;

            background-color: rgba(65, 67, 68, 0.1);
            border: 1px rgba(65, 67, 68, 0.2) solid;
            backdrop-filter: blur(50px);

            border-radius: 15px;
            padding: 2vh;
            gap: 2vh;
            & .links-logo {
                height: 50px;
                border-radius: 10px;
            }
            & .infos {
                display: flex;
                flex-direction: column;
                gap: 1.5vh;
                & .name {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: space-between;
                    gap: 2vh;
                    background-color: rgba(57, 59, 60, 0.3);
                    border-radius: 10px;
                    padding: 2px 12px;
                    cursor: pointer;
                    transition: ease 0.2s;
                    & .company {
                        font-size: 22px;
                        font-weight: 600;
                        cursor: pointer;
                    }
                    & .see-website {
                        font-size: 25px;
                        font-family: 'Material Symbols Rounded';
                        cursor: pointer;
                        transition: ease 0.2s;
                        background: linear-gradient(45deg, #eeff00, #00aeff, #ff00f2);
                        background-clip: text;
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: white;
                        
                    }
                    &:hover {
                        background-color: rgba(57, 59, 60, 0.5);
                        & .see-website {
                            -webkit-text-fill-color: transparent;
                        }
                    }
                }
                & .username {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    gap: 1vh;
                    & .logo {
                        font-family: 'Material Symbols Rounded';
                        font-size: 20px;
                    }
                    & .namer {
                        font-size: 18px;
                    }
                }
            }
        }
    }
}

/* -- nav bar -- */



/* -- animations -- */

@keyframes animateBubble {
    0%, 100% { transform: translate(0px, 0px) }
    50% { transform: translate(-5px, 5px) }
}

@keyframes gradientShift {
    0% { background-position: 10% 80%; }
    50% { background-position: 80% 10%; }
    100% { background-position: 10% 80%; }
}

/* -- Background circles -- */

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: rgb(20, 20, 20);
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(#eeff0088, #00aeff88, #ff00f288);
    filter: blur(125px);
    transition: 0.3s ease;
}

/* -- phone adapt -- */

@media only screen and (width < 1100px) {
    #navBar {
        & .title {
            display: none;
        }
        & .cetegories {
            position: relative;
            & .container {
                width: 70vw;
                & .sub {
                    padding: 0.75vw 1.5vw;
                    font-size: 16px;
                    font-weight: 500;
                }
            }
        }
        & .contact {
            & .links-logo {
                height: 30px;
            }
        }
    }

    #home {
        & .quick-desc {
            & .names {
                font-size: 60px;
            }
            & .description {
                font-size: 24px;
            }
        }
        & .image-zone {
            display: none;
        }
    }

    #experience, #projects, #about, #contact {
        padding: 10vh;
    }

    #about {
        & .contained {
            gap: 40px;
            & .parags {
                & .inner {
                    & .date {
                        left: -74px;
                    }
                    & .parag {
                        margin-left: 2vw;
                        width: 70vw;
                        .text {
                            font-size: 18px;
                        }
                        & .bigger {
                            font-size: 26px;
                        }
                        & .smaller {
                            font-size: 15px;
                        }
                    }
                }
            }
        }
        & .secondary {
            font-size: 34px;
        }
        & .diplomas{
            & .diploma {
                & .container {
                    font-size: 16px;
                    & .ttle {
                        font-size: 22px;
                        & a {
                            font-size: 16px;
                            padding: 4px 8px;
                        }
                    }
                    & .infos {
                        & .info {
                            & .logo {
                                font-size: 24px;
                            }
                            & .name {
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
    }
    
    #contact .head {
        width: 70vw;
    }
}

@media only screen and (width < 850px) {
    #experience, #projects, #about .title {
        & .main {
            font-size: 38px;
        }
        & .desc {
            font-size: 18px;
        }
    }

    #home {
        display: flex;
        align-items: center;
        & .quick-desc {
            width: 80vw;
        }
    }

    #experience {
        gap: 2vh;
        & .block {
            font-size: 30px;
            & .mainer {
                gap: 1vw;
            }
        }
    
        & .block .cards {
            gap: 2vw;
            & .card {
                gap: 1vw;
                & img {
                    height: 40px;
                }
                & .info {
                    & .name {
                        font-size: 20px;
                    }
                    & .desc {
                        font-size: 14px;
                    }
                }
            }
        }
    }
    
    #projects {
        gap: 2vw;
        & .cards {
            & .carder {
                border-radius: 15px;
                border: 2px rgb(32, 34, 39) solid;
                & .head {
                    & .name {
                        font-size: 22px;
                    }
                    & .see-website {
                        & .button {
                            font-size: 22px;
                        }
                    }
                }
                & .desc {
                    & .knoledge {
                        & .comp {
                            font-size: 14px;
                        }
                    }
                    & .text {
                        font-size: 16px;
                    }
                }
            }
        }
    }
    
    #about {
        gap: 3vw;
        & .contained {
            gap: 40px;
            height: 900px;
            & .parags {
                width: 60vw;
                & .inner {
                    & .date {
                        left: -74px;
                    }
                    & .parag {
                        margin-left: 2vw;
                        & .bigger {
                            font-size: 26px;
                        }
                        & .smaller {
                            font-size: 15px;
                        }
                    }
                }
            }
        }
        & .secondary {
            font-size: 30px;
            font-weight: 600;
        }
        & .diplomas {
            & .diploma {
                & .container {
                    padding: 1.5vh;
                    font-size: 15px;
                    & .ttle {
                        font-size: 18px;
                        & a {
                            font-size: 14px;
                            padding: 4px 8px;
                        }
                    }
                    & .infos {
                        & .info {
                            & .logo {
                                font-size: 20px;
                            }
                            & .name {
                                font-size: 15px;
                            }
                        }
                    }
                }
            }
        }
    }
    
    #contact {
        gap: 3vw;
        & .head {
            width: 80vw;
        }
        & .body {
            font-size: 18px;
        }
    }
}

@media only screen and (width < 600px) {
    #navBar {
        & .title {
            display: none;
        }
        & .cetegories {
            position: relative;
            & .container {
                width: 90vw;
                & .sub {
                    padding: 0.75vw 2vw;
                    font-size: 16px;
                    font-weight: 500;
                }
            }
        }
        & .contact {
            display: none;
        }
    }

    #experience, #projects, #about .title {
        & .main {
            font-size: 28px;
        }
        & .desc {
            font-size: 15px;
        }
    }

    #experience, #projects, #about, #contact {
        padding: 5vh;
    }

    #home {
        & .quick-desc {
            gap: 1vh;
            & .names {
                font-size: 50px;
            }
            & .description {
                font-size: 20px;
            }
        }
    }
    
    #experience {
        & .block {
            & .mainer {
                font-size: 26px;
            }
            & .descri {
                font-size: 14px;
            }
        }

        & .block .cards {
            & .card {
                gap: 2vw;
                padding: 1vw 1.4vw;
                border-radius: 10px;
                & img {
                    height: 30px;
                }
                & .info {
                    & .name {
                        font-size: 16px;
                    }
                    & .desc {
                        font-size: 12px;
                    }
                }
                &::before {
                    border-radius: 10px;
                }
            }
        }
    }
    
    #projects {
        & .cards {
            & .carder {
                & .head {
                    & .name {
                        font-size: 17px;
                    }
                    & .see-website {
                        & .button {
                            font-size: 17px;
                        }
                    }
                }
                & .desc {
                    & .knoledge {
                        & .comp {
                            font-size: 12px;
                        }
                    }
                    & .text {
                        font-size: 14px;
                    }
                }
            }
        }
    }
    
    #about {
        & .contained {
            gap: 30px;
            height: 900px;
            & .line {
                padding-left: 3px;
                padding-right: 3px;
                height: 100%;
            }
            & .parags {
                width: 70vw;
                & .inner {
                    padding: 1vh;
                    & .date {
                        left: -60px;
                        font-size: 14px;
                        padding: 4px 8px;
                        min-width: 45px;
                    }
                    & .parag {
                        & .text {
                            font-size: 16px;
                        }
                        & .bigger {
                            font-size: 22px;
                        }
                        & .smaller {
                            font-size: 14px;
                        }
                    }
                }
            }
        }
        & .secondary {
            font-size: 24px;
            font-weight: 600;
        }
        & .diplomas {
            & .diploma {
                font-size: 14px;
                & .ttle {
                    font-size: 16px;
                    & a {
                        font-size: 12px;
                        padding: 4px 8px;
                    }
                }
                & .infos {
                    & .info {
                        & .logo {
                            font-size: 18px;
                        }
                        & .name {
                            font-size: 12px;
                        }
                    }
                }
            }
        }
    }
    
    #contact {
        & .head {
            gap: 1vh;
            padding: 1vh;
            width: 90vw;
            & .top {
                & .photo-de-profile {
                    height: 100px;
                }
                & .info {
                    & .name {
                        font-size: 30px;
                    }
                    & .work {
                        font-size: 16px;
                        color: rgba(240, 248, 255, 0.598);
                        font-style: italic;
                    }
                }
            }
            & .bottom {
                gap: 1vh;
                & .info {
                    & .logo, .service, .type {
                        font-size: 16px;
                    }
                }
            }
        }
        & .body {
            font-size: 16px;
        }
        & .feet {
            width: 70vw;
            & .card {
                width: 100%;
                padding: 1vh;
                & .links-logo {
                    height: 40px;
                }
                & .infos {
                    gap: 1vh;
                    & .name {
                        gap: 1vh;
                        padding: 3px 8px;
                        & .company {
                            font-size: 16px;
                        }
                        & .see-website {
                            & .button {
                                font-size: 18px;
                            }
                        }
                    }
                    & .username {
                        gap: 1vh;
                        & .logo {
                            font-size: 14px;
                        }
                        & .namer {
                            font-size: 12px;
                        }
                    }
                }
            }
        }
    }
}

@media only screen and (width < 450px) {
    #navBar {
        display: none;
    }

    #experience, #projects, #about .title {
        padding-top: 25vh;
        & .main {
            font-size: 26px;
        }
        & .desc {
            font-size: 12px;
        }
    }

    #home {
        & .quick-desc {
            gap: 1vh;
            & .names {
                font-size: 50px;
            }
            & .description {
                font-size: 14px;
            }
        }
    }
    
    #experience {
        & .block {
            position: relative;
            left: -1vw;
            margin-top: 2vh;
            & .mainer {
                font-size: 22px;
            }
            & .descri {
                font-size: 12px;
                margin-bottom: 2vh;
            }
        }
    
        & .block .cards {
            left: -4vw;
            gap: 1vw;
            width: 88vw;
            & .card {
                padding: 0.5vw 1.5vw;
                gap: 1vw;
                & img {
                    height: 25px;
                }
                & .info {
                    padding: 1vw;
                    & .name {
                        font-size: 13px;
                    }
                    & .desc {
                        font-size: 9px;
                    }
                }
            }
        }
    }
    
    #projects {
        & .cards {
            & .carder {
                padding: 0.5vw;
                gap: 6vh;
                & .desc {
                    & .knoledge {
                        & .comp {
                            font-size: 10px;
                        }
                    }
                    & .text {
                        font-size: 12px;
                    }
                }
                &:hover {
                    gap: 10vh;
                }
            }
        }
    }
    
    #about {
        & .contained {
            gap: 30px;
            & .parags {
                & .inner {
                    & .date {
                        left: -58px;
                        font-size: 12px;
                        min-width: 50px;
                    }
                    & .parag {
                        & .text {
                            font-size: 14px;
                        }
                        & .bigger {
                            font-size: 22px;
                        }
                        & .smaller {
                            font-size: 12px;
                        }
                        & .events {
                            gap: 5px;
                        }
                    }
                }
            }
        }
        & .diplomas {
            justify-content: center;
            & .diploma {
                & .container {
                    padding: 1vh 1.5vh;
                    font-size: 12px;
                    gap: 0.5vh;
                    & .ttle {
                        font-size: 16px;
                        & a {
                            font-size: 12px;
                            padding: 2px 6px;
                        }
                    }
                    & .infos {
                        & .info {
                            & .logo {
                                font-size: 16px;
                            }
                            & .name {
                                font-size: 12px;
                            }
                        }
                    }
                }
            }
        }
    }
    
    #contact {
        padding-top: 20vh;
        & .head {
            & .top {
                & .photo-de-profile {
                    height: 80px;
                }
                & .info {
                    & .name {
                        font-size: 24px;
                    }
                }
            }
            & .bottom {
                gap: 1vh;
                & .info {
                    & .logo, .service, .type {
                        font-size: 14px;
                    }
                }
            }
        }
        & .body {
            text-align: center;
            font-size: 16px;
        }
        & .feet {
            & .card {
                justify-content: space-between;
                & .links-logo {
                    height: 35px;
                }
                & .infos {
                    gap: 1vh;
                    width: 100%;
                }
            }
        }
    }
}