@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

html,
body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background-image: linear-gradient(to right,#380036, #0CBABA);
    /* background-image: linear-gradient(120deg,#380036, #0CBABA); */
    /* background-image: linear-gradient(to right, #5F0A87, #A4508B); */
    /* background-image: linear-gradient(to right,#2A2A72,#009FFD); */
    /* background-image: linear-gradient(290deg,#F53844, #42378F); */
    /* background-image: linear-gradient(to right, #B621FE, #1FD1F9); */
    font-family: "Poppins", sans-serif;
    color: rgb(240, 248, 255);
}

/*BG*/
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 5px);
    animation: appear 1.5s 1;
    animation-fill-mode: forwards;
}

#hero *,
#portfolio * {
    z-index: 1;
}

#hero {
    width: 100%;
    height: 100%;
    /* min-height: -webkit-fill-available; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#info {
    text-align: center;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#name {
    font-size: 60px;
    line-height: 60px;
}

#social {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: row;
    /* width: 40%; */
}

.social-icon > svg {
    fill: rgb(240, 248, 255);
}

.social-icon {
    width: 33px;
    height: 33px;
    pointer-events: all;
}

a {
    text-decoration: none;
    color: rgb(240, 248, 255);
}
#scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translateX(-50%) rotate(45deg) scale(1);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    animation: scroll-animation 3s infinite;
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
}
#scroll-down:hover {
    animation: none;
    transform: translateX(-50%) rotate(45deg) scale(1.2);
}

@keyframes scroll-animation {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}
/*about me*/
.about_me{
    margin-top: 6.2rem;
    margin-left: 7rem;
    margin-right: 7rem;
}
.me{
    box-sizing: border-box;
    border: 5px solid rgb(0, 0, 0);
    padding: 50px;
    float: right;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-corner {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(240, 248, 255);
    border-radius: 10px;
}

@keyframes appear {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}



/* a {
    -webkit-tap-highlight-color: rgb(255, 255, 255);
} */

a:focus,
a:visited,
a:active {
    outline: none;
}