* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: 'Liberation Mono', monospace;
    letter-spacing: -0.01em;
    /* word-spacing: -0.2em; */
    line-height: 1.4;
    color: #333;
    background-color: #f3e8ff;
    padding: 20px;
}
.container {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
header {
    text-align: center;
    margin-bottom: 40px;
}
.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #d3bafc;
}
header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #6a0dad;
}
header p {
    font-size: 1.1rem;
    color: #7d4eae;
}
section {
    margin-bottom: 36px;
}
section h2 {
    font-size: 1.9rem;
    margin-bottom: 14px;
    border-bottom: 3px solid #d3bafc;
    padding-bottom: 8px;
    color: #6a0dad;
}
p {
    margin-bottom: 16px;
}
ul {
    list-style: disc inside;
    margin-left: 24px;
    margin-bottom: 16px;
}
a {
    /* color: #800080; */
    text-decoration: none;
    /* font-weight: 500; */
}
a:hover {
    text-decoration: underline;
}
.contact-list li {
    margin-bottom: 10px;
}
footer {
    text-align: center;
    font-size: 0.9rem;
    color: #8f8f8f;
    margin-top: 50px;
}
.secret {
    /* display: block; */
    opacity:0;
    /* font-size: 0.9rem; */
    color: #333;
    /* Reveal with fade-in */
    animation: revealText 3s ease-in forwards;
    animation-delay: 3s;
}
.in-text-url {
    color: #333;
    text-decoration: none;
}
.in-text-url:hover {
    text-decoration: none;
}
@keyframes revealText {
    0% { opacity: 0; display: block; }
    1% { display: block; }
    100% { opacity: 1; }
}
