        /* Base styles */
        body {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 25px;
            line-height: 1.7;
            max-width: 700px;
            margin: 0 auto;
            padding: 2rem;
            color: whitesmoke;
            background-color: #2d2d2d;
        }

        h1 {
            font-size: 2.5rem;
            color: #FFFFff;  /* 45px */
        }
        
        h2 {
            font-size: 2rem;    /* 36px */
            color: #FFFFD1;
        }
        
        h3 {
            font-size: 1.5rem;  /* 27px */
            color: #FFFFD1;
        }

        /* Links */
        a {
            color: #FFFFD1;
            text-decoration: underline;
        }

        a:hover {
            text-decoration: none;
        }

        /* Navigation */
        .nav {
            margin: 2rem 0;
        }

        .nav a {
            margin-right: 1rem;
            text-decoration: none;
            font-size: 1.1rem;
        }

        .nav a:hover {
            text-decoration: underline;
        }

        /* Posts list */
        .posts-list {
            list-style: none;
            padding: 0;
        }

        .posts-list li {
            margin-bottom: 0.5rem;
        }

        .post-date {
            color: #8f8f89;
            
            margin-right: 0.5rem;
        }

        .post-link {
            text-decoration: none;
        }

        .post-link:hover {
            text-decoration: underline;
        }

        /* Intro page */
        .intro {
            margin-top: 2rem;
        }

        .intro ul {
            padding-left: 1.5rem;
        }

        .intro li {
            margin-bottom: 0.5rem;
        }

        @media (max-width: 768px) {
            body {
                font-size: 16px;
                padding: 1rem;
            }
        }
        #mainTanmay {
            font-size: 30px;
            font-weight: bold;
        }

       /* Poetry styles - minimal and clean */
.poetry-list {
    list-style: none;
    padding: 0;
}

.poetry-list li {
    margin-bottom: 0.5rem;
}

.poetry-list a {
    text-decoration: none;
    margin-left: 1rem;  /* Add space between date and title */
}

.poetry-list a:hover {
    text-decoration: underline;
}

/* Individual poem page styles */
.poem {
    max-width: 600px;
    margin: 0 auto;
}

.poem-content {
    white-space: pre-wrap;
    line-height: 1.8;
}

.poem h1 {
    margin-bottom: 1rem;
}

/* Post styles */
.post {
    max-width: 700px;
    margin: 0 auto;
}

.post h1 {
    font-size: 2.5rem;
    color: #FFFFD1;
    margin-bottom: 1rem;
}

.post-content {
    font-size: 25px;
    line-height: 1.7;
    color: whitesmoke;
}

.post time {
    display: block;
    color: #8f8f89;
    font-size: 20px;
    margin-bottom: 2rem;
}

/* Style links within post content */
.post-content a {
    color: #FFFFD1;
    text-decoration: underline;
}

.post-content a:hover {
    text-decoration: none;
}
/* Footer styles */
.footer {
    margin-top: 1rem;  /* Increased from 4rem */
    padding-top: 2rem;
    padding-bottom: 2rem;  /* Added padding at bottom */
    text-align: left;
    font-size: 16px;
    color: #8f8f89;
}

.footer a {
    color: #FFFFD1;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Add this to ensure the footer stays at bottom even with short content */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;  /* This makes main content take up available space */
}

/* Poetry sections */
.poetry-sections {
    margin-top: 1rem;  /* Reduced from 2rem */
}

.poetry-sections section {
    margin-bottom: 1rem;  /* Reduced from 2rem */
}

.poetry-sections h3 {
    margin: 0;
}

.poetry-sections a {
    text-decoration: none;  /* Remove underline */
    color: #FFFFD1;  /* Keep your existing link color */
}

.poetry-sections a:hover {
    text-decoration: underline;  /* Add underline only on hover */
}

#lcd {
    font-size: 20px;
    color: #FFFFff;
    margin-bottom: 0;
    text-decoration: none;
    margin-top: 0;
}

#lcdss {
    margin-top: 0;
    color: #FFFFff;
    font-size: 18px;
}

.page-header {
    margin-top: 0;
}

/* Projects styles */
.projects-list {
    margin-top: 2rem;
}

.project {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #444;
}

.project:last-child {
    border-bottom: none;
}

.project h3 {
    margin-bottom: 0.5rem;
}

.project h3 a {
    text-decoration: none;
    color: #FFFFD1;
}

.project h3 a:hover {
    text-decoration: underline;
}

.project-description {
    color: #8f8f89;
    margin-top: 0.5rem;
    font-size: 0.9em;
    line-height: 1.6;
}