/* Base Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #e0e0e0;
    line-height: 1.3;
    background-color: #000000;
    font-size: 16px;
}

main {
    max-width: 800px;
    margin: 10px auto;
    padding: 0 15px;
}

section {
    margin: 10px 0;
}

hr {
    border: none;
    border-top: 1px solid #333;
    margin: 12px 0;
}

/* Typography */
h1, h2, h3 {
    color: #ffffff;
    margin: 0;
    padding: 0;
    font-weight: normal;
}

h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

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

p {
    margin: 0 0 8px 0;
    font-size: 1rem;
}

a {
    color: #64b5f6;
    text-decoration: none;
}

a:hover {
    color: #90caf9;
}

/* Intro Section */
.intro {
    text-align: center;
    margin-bottom: 6px;
}

.profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 4px 0;
    object-fit: cover;
}

/* Projects Section */
.project {
    margin-bottom: 10px;
}

.project:last-child {
    margin-bottom: 0;
}

.project h3 {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 6px;
}

.project h3 a {
    color: #64b5f6;
}

.description {
    color: #b0b0b0;
    margin-bottom: 6px;
    font-size: 1rem;
    line-height: 1.4;
}

.tech-stack {
    color: #808080;
    font-size: 0.9rem;
    margin: 6px 0 0 0;
}

/* Posts Section */
.posts {
    margin-bottom: 10px;
}

.posts .blog-entries {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.posts .blog-entry {
    display: block;
    text-decoration: none;
    margin-bottom: 4px;
}

.posts .blog-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.posts .blog-entry:hover .title {
    color: #90caf9;
}

.posts .blog-entry .title {
    font-size: 1.1rem;
    color: #64b5f6;
}

.posts .blog-entry .date {
    color: #808080;
    font-size: 0.9rem;
    text-align: right;
    min-width: 85px;
    margin-left: 12px;
}

.posts .blog-entry .description {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Contact Section */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1rem;
    margin: 40px 0;
}

/* Add this CSS rule */
.contact-info a {
    font-size: 1.2rem; /* Adjust the size as needed */
}