body
    {
       background: radial-gradient(#151d2a 0%, #000000 100%);
        overflow-x: hidden;
    }
    *
    {
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .heading1
    {
        font-size: 54px;
        font-weight:bold;
        background: linear-gradient(45deg,#8A2BE2, #DA70D6, #FF69B4);
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 30px rgba(138, 43, 226,0.2);

    }

    .box
    {
        background: rgba(0, 0, 0, 0.2);
        text-align: center;
        padding:30px;
        border: 1px solid rgba(138, 43, 226, 0.3);
        box-shadow: 0 8px 32px rgba(138, 43, 226, 0.2);
        border-radius: 15px;
        backdrop-filter: blur(2px);
    }

    .portal_gate
    {
        position: relative;
        z-index: 2;
        color: white;
        width: 40vw;
        font-size: 24px;
        margin-top: 10vh;
        transition: all 0.8s ease-out;
        transform: scale(1);
        opacity: 1;
    }
    .portal_gate.hide
    {
        transform: scale(0.8);
        pointer-events: none;
        opacity: 0;
    }
    #canvas-container
    {
        position: fixed;
        z-index: 1;
    }
    .main_container
    {
        display: flex;
        align-items: center;
        justify-content: center;
        align-content: center;
        min-height: 100vh;
    }


    .btn
    {
        padding: 15px 30px;
        text-align: center;
        color: white;
        background:linear-gradient(45deg,#850ff3, #FF69B4);
        border-radius: 30px;
        border: none;
        cursor: pointer;
        font-weight: 500;
        font-size: large;
        box-shadow: 0px 0px 2px #d164f1;
        transition: all 0.3s ease-in-out;
    }
    .btn:hover
    {
        transform: translateY(-3px);
        box-shadow: 0px 0px  8px #d164f1; ;
    }
    #name_reveal
    {
        background: linear-gradient(45deg,#850ff3, #FF69B4);
        background-clip: text;
        font-weight: bolder;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 30px rgba(138, 43, 226,0.2);
        font-size: 35px;
        position: relative;
        right: 10vw;
        bottom: 10vh;
        opacity: 0;
        display: inline-block;
        transition: opacity 1s ease-in-out;
    }
    #name_reveal::after {
    content: '|';
    animation: blink 0.5s steps(1, start) infinite;
    color: #FF69B4;
}

    @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
    }
    .about
    {
        color: #E6E6FA; margin: 1rem 0; 
        font-size: 18px;
        width: 600px;
        text-align: left;
        position: relative;
        z-index: 20;
    }
    .heading2
    {
        font-size: 30px;
    }

    .about ul
    {
        color: #E6E6FA; margin: 1rem 0; list-style: none;
    }
    .aboutbox
    {
        display: flex;
        justify-content: space-around;
        align-items: center;
        min-height: 100vh;
        position: relative;
        z-index: 10;
        transition: all 1s ease ease-in-out;
    }
    .profilepic
    {
        height: 60vh;
        border-radius: 40%;
        border: none;
        box-shadow: 0px 0px 2px #d164f1;
        filter: drop-shadow(0 0 10px #4d155f) brightness(0.7);
    }

    .hidden 
    {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
    }
    .show {
    opacity: 1;
    transform: translateX(0);
    }

    .projects
    {
        display: flex;
        width: 80vw;
        color: whitesmoke;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 10px;
    }
    #projects
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        position: relative;
        z-index: 10;
    }

    .projectname
    {
        font-size:20px;
        background: linear-gradient(45deg,#850ff3, #FF69B4);
        background-clip: text;
        font-weight: bolder;
        -webkit-text-fill-color: transparent;
    }
    .project
    {
        text-align: left;
        border: 1px solid rgba(138, 43, 226, 0.3);
        box-shadow: 0 8px 32px rgba(138, 43, 226, 0.2);
        background-color: rgba(55, 21, 53, 0.2);
        height: 300px;
        width: 500px;
        padding: 15px;
        border-radius: 20px;
    }
    .project:hover
    {
        box-shadow:0 10px 30px rgba(138, 43, 226, 0.3);
        transform: translateY(-5px);
    }

    nav
    {
        position: fixed;
        top: 2rem;
        right: 2rem;
        z-index: 100;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50px;
        padding: 1rem;
        border: 1px solid rgba(138, 43, 226, 0.3);
    }
    .nav-item:hover {
            background: rgba(138, 43, 226, 0.3);
            color: white;
        }
    .nav-item
    {
        display: block;
        color: #E6E6FA;
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        transition: all 0.3s ease;
        margin-bottom: 0.5rem;
    }
    #contact
    {
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
        margin-top: 8vw;
        position: relative;
        z-index: 10;
        color: white;
    }
    #contactForm
    {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding-left: 10px;
        padding-right: 10px;
        text-align: left;
    }
    input,textarea
    {
        background-color: rgba(0, 0, 0, 0.3);
        padding: 10px;
        width: 100%;
        border-radius: 10px;
        border: 1px solid  rgba(203, 66, 203, 0.3);
        font-size: 1rem;
        color: white;
    }
    .notes-section {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(138, 43, 226, 0.3);
           width:600px;
        }

        .note {
            background: rgba(138, 43, 226, 0.1);
            border-radius: 10px;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(138, 43, 226, 0.2);
        }

        .note-author {
            font-weight: bold;
            color: #DA70D6;
        }
        .sociallist
        {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 25px;
            align-content: center;
            justify-content: center;
        }
        .sociallist li
        {
            display: flex;
            gap: 10px;
            align-items: center;
            transition: 0.5s ease-out;
        }
        .sociallist li:hover
        {
            transform: translateX(10px);
            scale: 1.05;
            font-weight: bolder;
        }
        .sociallist li img
        {
            color: white;
        }
