/* 80-90s Computer Scientist Style */
:root {
    --background-color: #FFFFFF; /* White background */
    --text-color: #000000; /* Black text */
    --link-color: #0000FF; /* Blue links */
    --header-color: #000000;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 2px solid var(--text-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.profile-picture {
    height: 120px; /* Set fixed height */
    width: 120px;  /* Set fixed width to create a square */
    object-fit: cover; /* Crop the image to fill the square */
    filter: grayscale(100%) sepia(50%) contrast(1.2); /* Enhanced retro filter */
    border: 2px solid var(--text-color);
    padding: 4px;
}

h1 {
    font-size: 2em;
    color: var(--header-color);
    margin: 0;
}

.contact-info a {
    margin-right: 15px;
}

h2 {
    font-size: 1.5em;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 5px;
    margin-top: 30px;
}

section {
    margin-bottom: 20px;
}

.entry {
    margin-bottom: 25px;
}

.entry-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.1em;
}

.entry-date {
    text-align: right;
    font-size: 0.9em;
    font-style: italic;
    color: #333;
    margin-top: -5px; /* Pull date closer to the header */
}

ul {
    padding-left: 20px;
    margin-top: 10px;
}

li {
    margin-bottom: 10px;
}

.tags {
    margin-top: 10px;
}

.tags span {
    display: inline-block;
    border: 1px solid var(--text-color);
    padding: 3px 8px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.full-list-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
}
