* {
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman';
}

body {
    background-color: #c89666;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* padding: 20px; */
}

.profcont {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.titlee {
    font-size: 40px;
    background: linear-gradient(120deg, #1774df 30%, #ffd6a5 50%, #1774df 70%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
    animation: shine 4s linear infinite;
    margin-bottom: 15px;
}

@keyframes shine {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}




h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

.randomshi {
    color: #666666;
    font-size: 1rem;
    /* font-style: italic; */
    margin-bottom: 30px;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;

    letter-spacing: 1px;
}

.bio p {
    color: #555555;
    line-height: 1.6;
    font-size: 0.95rem;
}