*, html {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#home,
#projects,
#about {
    scroll-margin-top: 60px;
}

@keyframes fadeIn{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes typing{
    from{
        width: 0ch;
    }
    to {
        width: 5.5ch;
    }
}

@keyframes blink{
        0%{
        border-color: white;
    }
    50%{
        border-color: transparent;
    }
    100%{
        border-color: white;
    }
}

body{
    font-family: 'Inter', sans-serif;
}

.intro{
    background: linear-gradient(90deg, #c7faf3, #d2bcf0);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
  font-size: 90px;
  font-weight: 700;
}

.greeting{
    animation: fadeIn 3.25s forwards;
}

.name{
    animation: typing 1.1s steps(8), blink 1s step-end infinite;;
    animation-delay: 0.2s, 1.2s;
    animation-fill-mode: forwards;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    border-right: 1.5px solid white;
    padding-right: 3px;
    font-weight: 400;
    font-size: 120px;
    margin-top: -15px;
}

.intro-text{
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
    justify-content: center;
}

.animation-text{
    white-space: nowrap;
}

.center-stuff{
    display: flex;
    max-width: 1100px;
    width: 100%;
    height: 100%;
    align-items: flex-end;
}

header{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 200px;
    height: 400px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(168, 85, 247, 0.25),
            transparent 35%
        ),

        radial-gradient(
            circle at 80% 20%,
            rgba(192, 132, 252, 0.20),
            transparent 40%
        ),

        radial-gradient(
            circle at 70% 80%,
            rgba(109, 40, 217, 0.15),
            transparent 35%
        ),

        #020202;

    min-height: 400px;
}

.video-text{
    gap: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    min-height: 400px;
    position: relative;
    overflow: visible;
}

.email{
    text-align: center;
    padding-bottom: 15px;
}

#about{
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(168, 85, 247, 0.25),
            transparent 35%
        ),

        radial-gradient(
            circle at 80% 20%,
            rgba(192, 132, 252, 0.20),
            transparent 40%
        ),

        radial-gradient(
            circle at 70% 80%,
            rgba(109, 40, 217, 0.15),
            transparent 35%
        ),

        #020202;
}


.pfp{
    object-fit: contain;
    width: auto;
    height: 370px;
    overflow: visible;
    
}

nav{
    display: flex;
    padding-left: 12px;
    gap: 13px;
    align-items: center;
    height: 60px;
    padding: none;
    background: black;

    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.8);
    position: sticky; top: 0px;
    z-index: 10;
}

a{
    text-decoration: none;
    font-weight: 500;

  color: white;
  font-size: 18px;
}

a:hover{
    background: linear-gradient(90deg, #d1f7f2, #bf98f5);
    font-weight: 800;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    text-shadow: 0.1px 1px 2px rgba(250, 245, 245, 0.151);
  background-clip: text;
  color: transparent;
  transition: 0.2s;
}

.nav-right{
    margin-left: auto;
    padding-right: 8px;
    display: flex;
    gap: 0px;
    height: 100%;
}

.right-btn{
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.right-btn:hover{
    transition: 0.2s;
    background-color: black;
    background-image: linear-gradient(90deg, #ffffff, #a7cff7);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
    color: transparent;
    
}

.icon{
    width: 30px;
}

.tiktok{
    width: 29px;
}

.intro-text,
.pfp{
    position: relative;
    z-index: 2;
}

.header-subtext{
    background-image: linear-gradient(90deg, #ffffff, #a7cff7);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
    color: transparent;
    font-size: 26px;
}

.glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.glow-left{
    width: 700px;
    height: 500px;

    top: -250px;
    left: -250px;

    background: rgba(210, 188, 240, 0.18);

    transform: rotate(-25deg);
}

.glow-right{
    width: 700px;
    height: 500px;

    right: -250px;
    bottom: -250px;

    background: rgba(220, 210, 255, 0.18);

    transform: rotate(25deg);
}

.glow-center{
    width: 350px;
    height: 200px;
    background: rgba(168, 85, 247, 0.03);
}

#projects{
    height: 650px;
}

.projects-header{
    font-size: 60px;
    margin-top: 20px;
    margin-bottom: 10px;
    background-image: linear-gradient(30deg, #000000, #ff8ff8);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    background-clip: text;
    color: transparent;
}

.projects-txt{
    height: 40%;
    padding-left: 40px;
}

.about-p{
    background: linear-gradient(110deg, #e6f7f4, #c2a1f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    font-size: 20px;
  background-clip: text;
  color: transparent;
}


p{
    font-size: 20px;
}

iframe{
    max-width: 500px;
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    margin: 0;
}

.video-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

h1{
    font-size: 65px;
    font-weight: 500;
    background-image: linear-gradient(110deg, #e2f6f7dd, #c379ff);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
    color: transparent;
}

.about-txt{
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    max-width: 500px;
    width: 100%;
    margin-top: -15px;
}

.about-container{
    display: flex;
}

@media (max-width: 1000px){

    #about{
        flex-direction: column;
        gap: 50px;
        height: auto;
        padding: 60px 40px;
    }

    .center-stuff{
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        text-align: center;
        gap: 30px;
        height: auto;
    }

    .intro{
        font-size: 60px;
    }

    .name{
        font-size: 80px;
    }

    .pfp{
        height: 300px;
    }

    header{
        padding: 0 40px;
        height: auto;
        min-height: 600px;
        align-items: stretch;
    }
}