/* Catppuccin-inspired colors */
:root {
    --base: #eff1f5;
    --mantle: #e6e9ef;
    --text: #4c4f69;
    --subtext: #5c5f77;
    --accent: #7287fd;
    --accent-hover: #04a5e5;
    --bg: #dce0e8;
}

body {
    font-family: "Courier New", Courier, monospace;
    margin: 0;
    padding: 0;
    background-color: var(--base);
    color: var(--text);

    min-height: 400px;
    margin-bottom: 110px;
    margin-top: 40px;
    display: flex;
    flex-direction: column; /* Enables column layout */
}

pre{ 
  color: #40a02b
}

header {
    background-color: var(--mantle);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
nav a {
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 16px;
    color: var(--text);
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-hover);
}

nav a:active {
    color: var(--accent-hover);
}

footer {
    background-color: var(--mantle);
    padding: 10px 0;
    bottom: 0;
    /*position: sticky;*/
    /*position: absolute;*/
    position: fixed;
    /*flex:1;*/
    z-index: 1000;
    text-decoration: none;
    font-size: 12px;
    color: var(--text);
    transition: color 0.3s;
    text-align: center;
    width: 100%;
    height: 75;
    padding:20px;
}

footer .footer-content {
  max-width: 800px;
  margin: 0 auto;
}

footer code {
  font-family: monospace;
  color: #40a02b;
  padding: 2px 4px;
  border-radius: 3px;
}

.container {
    transition: all 0.3s ease;
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    gap: 40px;
    padding: 20px;
    background: var(--bg);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.container a {
    text-decoration: none;
    color: var(--accent);
    transition: color 0.3s;
}

.container a:hover {
    color: var(--accent-hover);
}

.container p {
    padding-top: 0pt;
    line-height: 1.6;
    color: var(--subtext);
}

.container h1{
    padding-top: -50pt;
}

.highlight {
  color: #4c4f69;
}
.indented {
    margin-left: 1em;    /* shifts it slightly right */
    padding-left: 0.5em; /* optional: adds a subtle inner padding */
    border-left: 3px solid #ddd; /* optional: nice academic-style highlight */
}
.profile {
    flex: 1;
    text-align: center;
}
.profile img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: border-radius 0.3s ease, height 0.3s ease;
}

.profile img:hover {
    border-radius: 5%;
    height: 200px;
}
.profile .social {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
}
.profile .social ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.profile .social li {
    margin: 5px 0;
}
.profile .social a {
    text-decoration: none;
    color: var(--accent);
    transition: color 0.3s;
}
.profile .social a:hover {
    color: var(--accent-hover);
}
.content {
    flex: 2;
}
.content h1 {
    margin-top: 0;
    font-size: 28px;
    color: var(--text);
}
.content p {
    line-height: 1.6;
    color: var(--subtext);
}
