*{
    margin: 0;
    padding: 0;

}
body{
    background-color: #030809;
    font-family: "poppins";
}
.menu-options a{
    text-decoration: none;
    
}
.menu-options{
    display: flex;
    gap:50px;
    justify-content:center;
    justify-self: center;
    border: solid rgb(66, 65, 65) 2px;
    border-radius:100px;
    width: fit-content;
    padding: 10px 5px;
    margin:20px;
    animation: zoom-out 0.7s both;
}
@keyframes zoom-out {
    from{
        transform: scale(1.3);
    }
    to{
        transform: scale(1);
    }
}
.menu-options li{
    list-style: none;
    font-weight:500;
    font-size: 15px;
    cursor: pointer;
    padding: 10px 20px;
    color: white;
    background-color:transparent;
    border-radius: 30px;
}

.menu-options li:hover{
    background-color: #3bf677;
    color: #030809;
    transition: ease-out 0.4s;
}
.menu{
    display: none;
    flex-direction: column;
    position: fixed;
    right: 5%;
    top: 3%;
    z-index: 11;
}
.menu span{
    display:block;
    width:30px;
    height:2px;
    background:#3bf677;
    margin:3px 0;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    transform-origin: center;
}

.menu.active span:nth-child(1){
    transform: translateY(4px) rotate(45deg);
}

.menu.active span:nth-child(2){
    transform: translateY(-4px) rotate(-45deg);
}


/* MOBILE */


@media(max-width:750px){
    .menu-options{
        width: 80vw;
        height: 100vh;
        position:fixed;
        top: 0;
        right: 0;
        display: none;
        flex-direction: column;
        border-radius: 0;
        border: none;
        padding: 70px 0px;
        margin: 0px;
        justify-content: start;
        background-color: rgba(255, 255, 255,0.2);
        backdrop-filter: blur(50px);
        z-index: 11;
        animation: open-left 1s both;
    } 
    @keyframes open-left {
        from{
            opacity: 0;
            transform: translateX(100%);
            border-radius: 100%;
        }
        to{
            opacity: 1;
            transform: translateX(0);
            border-radius: 0px;
        }
    }
    .menu-options.show {
        display: flex; /* show when active */
    }
    .menu{
        display: flex;
    }
}

.help-icons{
    display: flex;
    flex-direction:column ;
    gap: 10px;
    position: fixed;
    bottom: 0;
    right: 2%;
    z-index: 5;

    animation: appear 1s both;
}
@keyframes appear {
    from{
        opacity: 0;
        transform: scale(0.5);
        transform: translateY(500px);
    }
    to{
        opacity: 1;
        transform: scale(1);
        transform: translateY(0);
    }
}
@keyframes disappear {
    from{
        opacity: 1;
        transform: scale(1);
        transform: translateY(0);
    }
    to{
        opacity: 0;
        transform: scale(0.5);
        transform: translateY(-500px);
    }
}
.help-icons img{
    width: 30px;
    filter: invert(100%);
}
.help-icons p{
    color: white;
    font-size: small;
    font-family: 'poppins';
}

/* MOBILE */


@media(max-width:750px){
    .help-container{
        display: none;
    }
}





.banner-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 200px 0 100px; 
    height: 85vh;
}

button{
    background:#3bf677;
    font-family:"poppins";
    color:black;
    padding:12px 24px;
    border-radius:30px;
    border: none;
    font-weight:500;
    display:inline-block;
    transition:.3s;
    margin-top: 30px;
    cursor: pointer;
}
button:hover{
    background:#2ed25f;
    transform: translateY(-2px);
    box-shadow: 0 0 3px 1px #1ee45d;
}
.banner-container .text{
    opacity: 0;
    transform: translateX(-50px);
    animation: faderight 1s forwards;
}

@keyframes faderight{
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.text h1{
    color: white;
    font-size: 50px;
}
.text span{
    color: #3bf677;
    font-size: larger;
}
.text p{
    color: white;
    font-size: larger;
    margin-top: 10px;
}
.blob-container{
    position: relative;
    width: 350px;
    height: 350px;
    display:flex;
    justify-content:center;
    align-items: center;
    animation: zoom-out 1s both;
}
@keyframes zoom-out {
    from{
        opacity: 0;
        transform: scale(1.2) ;
        filter:grayscale(1);
    }
    to{
        opacity:1;
        transform:scale(1);
        filter:grayscale(0);
    }
    
}
.blob{
    width: 350px;
    height: 350px;
    background-color: rgb(54, 54, 54);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70% ;
    position:absolute;
    z-index: 1;
    transform: rotateX(180deg);
}
.blob-container img{
    width: 400px;
    top:-50px;
    position: absolute;
    z-index: 2;
    background: transparent;
    border-bottom-right-radius:210px;
    border-bottom-left-radius: 140px;
}
.scroll-bar{
    width: 5px;
    height: 150px;
    border-radius:10vw;
    position:fixed;
    top:40vh;
    right: 10px;
    animation: scroll-watcher both;
    animation-timeline: scroll();
    background: linear-gradient(#3bf677 0 0) no-repeat;
    background-size: 100% 0%;
    background-position: top;
}
@keyframes scroll-watcher{
    to{
        background-size: 100% 100%;
    }
} 



/* MOBILE */

@media (max-width:750px) {
    .banner-container{
        margin:30px;
    }
    .blob-container{
        display: none;
    }
    .scroll-bar{
        display: none;
    }
}



@font-face {
    font-family:"bold numez";
    src: url(numez.otf);
}
.skill-container{
    width: 100%;
    color: white;
    background-color: #0f1017;
    padding-bottom: 100px;
}
.skill-container h1{
    display: flex;
    justify-self: center;
    padding: 50px;
    font-family: "bold numez";
    font-weight: 10;
    font-size: 40px;
    letter-spacing: -1px;
    animation: text-appear both;
    animation-timeline: view(75% 5%);

}
@keyframes text-appear{
    from{
        opacity: 0;
        transform: translateY(100px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.skills{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:30px;
}
.skills span{
    display: flex;
    justify-content: center;
    width: 400px;
}

span label{
    
    font-size: 30px;
    flex: 1;
    text-align: right;
    align-self:center;
    font-family: poppins;
    font-weight: 600;
    animation: slide linear;
    animation-timeline: view(75% -10%);
    /* animation-range-start: -10px;
    animation-range-end: 50vh; */
}
@keyframes slide{
    from{
        flex:0
    }
    to{
        flex:1
    }
}
.skills span img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
#react-img{
    animation: rotate;
    animation-timeline: view();
}

@keyframes rotate{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}




/* MOBILE */

@media(max-width:750px){
    
    .skill-container h1{
        font-size:x-large;
        letter-spacing: 2px;
    }

     .skills span{
        width: 100%;
        max-width: 90vw;
        gap: 5px;
    }
    .skills span img{
        width: 50px;
        height: 50px;
    }
    .skills span label{
        font-size: large;
    }
}



.projects-container{
    width: 100%;
    padding-bottom: 60px;
}
.projects-container h1{
    color:white;
    justify-self: center;
    font-family: "bold numez";
    padding: 50px;
    font-weight: 50;
    font-size: 40px;
    animation: text-appear both;
    animation-timeline: view(75% 10%);
}
@keyframes text-appear{
    from{
        opacity: 0;
        transform: translateY(100px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.project-card{
    width: 100%;
    display: flex;
    color: white;
    gap: 50px;
    align-items: center;
    max-width: 90vw;
    margin: 40px auto;
    padding: 0 20px;
}
.project-card h2{
    color: #3bf677;
}
.project-card a{
    display: block;
    width: 500px;
    flex-shrink: 0;
}
.project-card a img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    animation: zoomin 1s   both;
    animation-timeline: view(75% 5%);
}
@keyframes zoomin {
    0%{
        opacity: 0;
        transform: scale(1.08) translateY(100px);
        filter: blur(6px);
    }
    100%{
        
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}
.project-details{
    display: flex;
    flex-direction: column;
    gap: 20px;
    will-change: transform;
    animation: slide-left 0.8s ease-out both;
    animation-timeline: view(75% 5%) ;
}
@keyframes slide-left {
    from{
        opacity:0;
        transform: translateX(40px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}


/* MOBILE */


@media(max-width:750px){
    .projects-container{
        text-align: center;
    }
    .projects-container h1{
        font-size: x-large;
    }
    .project-card{
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
        margin: 70px auto;  
        max-width:65vw;
        gap: 20px;
    }
    .project-card a{
        width: auto;
    }
    .project-card a img{
        width: 100%;
        max-width: 1000%; 
        height: auto;
        margin: 0;
        padding: 0;
    }
   .project-details{
    text-align: center;
    font-size: small;

   }
}


.contact-container{
    background-color: #0f1017;
    color: white;
    text-align: center;
    padding: 40px;
}
.contact-container h1{
    font-family: "bold numez";
    font-weight:10;
    animation: text-appear both;
    animation-timeline: view(75% 10%);
}
@keyframes text-appear{
    from{
        opacity: 0;
        transform: translateY(100px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.contact-container a{
    display: inline-block;
    font-family:"poppins";
    text-decoration: none;
    font-weight: 700;
    color: inherit;
    letter-spacing: -1px;
    font-size: larger;
    padding:20px;
}
.contact-container a:hover{
    color: #3bf677;
    text-shadow: 0px 0px 2px #3bf677;
}
.icon-container img{
    display: inline-block;
    width:3vw;
    filter: invert(100%);
    margin-left: -20px;
}



/* MOBILE */


@media(max-width:750px){
    .contact-container h1{
        font-size: x-large;
    }
    .contact-container a{
        font-size: small;
    }
    .icon-container img{
        width: 7vw;
    }
}