html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    flex-direction: column;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.6;
}
.container {
    flex: 1;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
header {
    text-align: center;
    margin-bottom: 20px;
}
header h1 {
    font-size: 2.5em;
    margin: 0;
    color: rgb(110, 111, 114);
}
header h1 .first-name {
    font-weight: bold;
}
header h1 .last-name {
    font-weight: 400;
}
header p {
    font-size: 1.2em;
    color: #777;
}
.job-market {
    font-size: 1.6em;
    font-weight: 700;
    color: #e64040; /* subtle but eye‑catching */
    margin: 5px 0;
}
.job-market-sub {
    font-size: 1.05em;
    color: #555;
    margin-bottom: 20px;
}
.content {
    display: flex;
    align-items: flex-start;
}
.content img {
    border-radius: 8px;
    width: 235px;
    height: 300px;
    object-fit: cover;
    margin-left: 20px;
    margin-top: 20px;
}
.content div {
    flex: 1;
}
.contact-info {
    font-style: italic;
    margin-top: 10px;
}
#computePi {
    cursor: pointer;
    font-size: 15px;
    font-style: italic;
    margin-top: 20px;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
    margin-top: 20px;
}
footer p {
    margin: 5px 0;
    font-size: 0.8em;
}
footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 10px;
    opacity: 0.7;
    transition: fill 0.3s ease;
}
footer .social-icons a:hover {
    fill: blue;
    opacity: 1;
}
nav {
    text-align: right;
    margin-bottom: 20px;
    padding-top: 10px;
}
nav a {
    margin: 0 10px;
    margin-top: 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}
a {
    border: none;
    text-decoration: none;
    outline: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .content img {
        margin-left: 0;
        margin-top: 20px;
        width: 200px;
        height: auto;
    }

    nav {
        text-align: center;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }

    header h1 {
        font-size: 2em;
    }

    .job-market {
        font-size: 1.4em;
    }
}
