body {
    background-color: #131316;
    color: #ffffff;
    padding: 0;
    margin: 0;
    font-size: 3em;
    letter-spacing: 10px;
    font-family: monospace;
}

a{
    color: #ffffff;
    text-decoration: none;
}
a:hover{
    color: #c1c1c1;;
    text-decoration: none;
}

.navbar{
    text-align: right;
    /* margin-right: 0.5em; */
    width: 100%;
    display: flex;
    position: fixed;
    display: flex;
    justify-content: flex-end; /* Align the content to the right */
    z-index: 100;
}
.navbar-items{
    margin-left: 0.5em;
    margin-right: 0.5em;
    margin-top: 0.25em;
}
.navbar-items:hover{
    stroke: #000000;
    fill: #ffffff;
}
.icons{
    stroke: #ffffff;
    fill: #ffffff;
    stroke-width: 0;
}
.icons:hover{
    stroke: currentColor;
    fill: currentColor;
    stroke-width: 0;
    stroke: #FF8000;
    fill: #FF8000;
}



/* header{
    
} */

section {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 100vh;
    margin-bottom: 10vh;
    scroll-snap-align: start;
    position: relative;

}
.section-container{
    height: 100vh;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    /* scroll-behavior: smooth; */
}
.section-center{
    height: 100%;
    width: 100%;
    display: block;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
    text-align: center;
    
}
.hidden {
    opacity: 0; 
    filter: blur(5px);
    transform: translateY(-30%);
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    transition: 1s;
}

@media(prefers-reduced-motion) {
    .hidden {
        transition: none;
    }
}

.profile {
    width: 250px;
    height: 250px;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 50%;
    object-fit: cover;
    transition-delay: 200ms;
  }



.contentDiv {
    height: 10%;
    position: absolute;
    width: 100%;
    display: inline-block;
    bottom: 3rem;
    margin-top: 4rem;
}

@keyframes bouncing {
    0% {bottom: 0;}
    50% {bottom: 20px;}
    100% {bottom: 0;}
}

.arrow {
    animation: bouncing 1s infinite ease-in-out;
    bottom: 0;
    display: block;
    height: 50px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 50px;
    stroke: #ffffff;
    fill: #ffffff;
}
.arrow:hover {
    /* filter: brightness(0) invert(0.6); */
    stroke: #FF8000;
    fill: #FF8000;
}




.spacer{
    height: 20vh;
}

.image-gallery-container{
    position:relative;
    width: 100%;
    height: 30vh;
    /* overflow: hidden; */   
}

.image-gallery{
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    opacity: 1;
    /* filter: blur(5px); */
    top: 0;
    
}
/* .image-gallery.active{
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
    transition: 2s;
} */



.gallery-obj:nth-child(1){
    transition-delay: 200ms;
    animation-delay: 200ms;
}
.gallery-obj:nth-child(2){
    transition-delay: 400ms;
    animation-delay: 400ms;
}
.gallery-obj:nth-child(3){
    transition-delay: 600ms;
    animation-delay: 600ms;
}
.gallery-obj:nth-child(4){
    transition-delay: 800ms;
    animation-delay: 800ms;
}

.gallery-obj{
    width: 100%; 
    height: 300px; 
    overflow: hidden; 
    border-radius: 10%;
    padding: 1rem;
    opacity: 1;

}
.gallery-obj.appear{
    animation-name: jumpIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;

    transition-duration: 1s;
    filter: blur(0px);

}
.gallery-obj.disappear{
    animation-name: jumpOut;
    animation-duration: 1s;
    animation-fill-mode: forwards;

    transition-duration: 1s;
    filter: blur(5px);
}
.gallery-obj.start{
    opacity: 0;
}



.gallery-img{
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
}

@keyframes jumpIn{
    from{ 
        transform: translateY(-30%);
        opacity: 0;
        /* filter: blur(5px);  */
    }
    to{ 
        transform: translateY(0);
        opacity: 1;
        /* filter: blur(0px); */
     }
}
@keyframes jumpOut{
    from{ 
        transform: translateY(0);
        opacity: 1;
    }
    to{ 
        transform: translateY(30%);
        opacity: 0;
     }
}


.type-container {
    display: inline-block;

}


.typewriter {
    border-right: 5px solid #FF8000; /* Initial cursor appearance */
    width: 0; /* Start with width 0 */
    white-space: nowrap; /* Prevent wrapping of text */
    overflow: hidden; /* Hide overflow */
    font-family: monospace; /* Consistent font for typing effect */
}

.typewriter.visible {
    border-right: 5px solid #FF8000;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    animation:
        typing 2s,
        cursor .3s step-end infinite alternate;
    ;
}
/* .typewriter-obj{
    display: inline-block;
    position: absolute;
    border-right: 5px solid #FF8000;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
} */
/* .typewriter-obj{
    animation:
        typing-list 4s ease-in-out infinite,
        cursor .3s step-end infinite alternate;
    ;
} */
.typewriter-obj:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-left: 2px solid #4070F4;
    /* animation: animate 4s steps(12) infinite; */
    animation: animate 4.5s ease-in-out infinite;
}

  
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}
@keyframes animate {
    40%, 60%{
        left: calc(100% + 4px);
    }
    100%{
        left: 0%;
    }
}
  
@keyframes cursor {
    from { border-color: transparent;}
    to { border-color: transparent; }
    50% {border-color: #FF8000;}
}


.container{
    width: 100%;
    overflow: hidden;
}
.container .text{
    position: relative;
    color: #FF8000;
    font-size: 30px;
    font-weight: 600;
}
.container .text.first-text{
    color: #FFF;
}
.text.sec-text:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #131316;
    border-left: 5px solid #FF8000;
    /* animation: animate 4s steps(12) infinite; */
    /* animation: animate 4.5s ease-in-out infinite; */
    animation:
        animate 4.5s ease-in-out infinite,
        cursor .3s step-end infinite alternate;
;
}
@keyframes animate{
    40%, 60%{
        left: calc(100% + 4px);
    }
    100%{
        left: 0%;
    }
}