
.instilogo {
    height: 50px;
    filter: grayscale(20%);
}

a:hover {
    /* font-weight: 400; */
    text-decoration: none;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    /* color: #444; */
}


.noter {
    font-size: 9pt;
}

.tagsep {
    padding: 4px;
}

.tag {
    padding-right: 2px;
}

.confshort {
    font-weight: 300;
}

.conf {
    display: inline-block;
    padding-bottom: 4px;
}

.paper {
    border-left: 1px solid #ddd;
}

.fixed-posi .fa {
    width: 1.5em;
}

/* .menulink:hover {
    color: #bfffbf;
} */

.menulink {
    text-color: #bfffbf;
}

.profilepic {
    width: 150px;
    border-radius: 8px;
    transition: all 0.5s ease;
    animation: fadeIn 1s ease-in;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto 15px;
    vertical-align: bottom;
    line-height: 0;
}

.profilepic:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .fixed-posi {
        /* width: 50%;
            margin-left: 50%;
            min-height:100%; */
        position: fixed;
    }
}

@media only screen and (max-width: 900px) {
    .allstuff {
        padding-top: 0px !important;
    }

    .allstuffp {
        padding-top: 0px !important;
    }

    .profilepic {
        width: 90px;
        border-radius: 6px;
        margin: 0 auto 10px;
        transition: all 0.5s ease;
    }

    .menur {
        padding-top: 18px !important;
    }

}

/* .thisauthor {
          color: #111;
          text-decoration: underline;
    } */

.name {
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    font-weight: 500;
    background: linear-gradient(120deg, #1a1a2e, #16213e, #0f3460);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(15,52,96,0), 
        rgba(15,52,96,0.8), 
        rgba(15,52,96,0)
    );
    transform: scaleX(0.7);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.name:hover {
    transform: translateY(-2px);
}

.name:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.social-links {
    margin: 1.5rem 0;
    letter-spacing: 0.05em;
}

.social-icon {
    display: inline-block;
    margin: 0 12px;
    font-size: 20px;
    color: #666;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon .fa-graduation-cap:hover {
    color: #4285f4;
}

.social-icon .fa-github:hover {
    color: #333;
}

.social-icon .fa-twitter:hover {
    color: #1da1f2;
}

.about {
    line-height: 1.8;
    letter-spacing: 0.01em;
}