body {
    font-family: 'Times New Roman', sans-serif;
    /* Choose a professional font */
    margin: 40px auto;
    /* Top/bottom 40px, left/right auto (centers content) */
    padding: 20px;
    max-width: 800px;
    /* Limits the width of your CV content */
    background-color: #eaeaeb;
    /* Light grey background */
    color: #333;
    /* Dark grey text */
    line-height: 1.6;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for the content box */
}

h1 {
    text-align: center;
    color: #2c3e50;
    /* Dark blue/grey */
    margin-bottom: 5px;
}

header p {
    text-align: center;
    font-size: 1.1em;
    margin-top: 0;
}

h2 {
    color: #34495e;
    /* Slightly lighter dark blue/grey */
    border-bottom: 2px solid #34495e;
    padding-bottom: 5px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: small;
}

h3 {
    color: #333;
    margin-bottom: 5px;
}

profile-pic {
    width: 50px;
    /* Or whatever pixel value you find suitable (e.g., 100px, 200px) */
    height: auto;
}

a {
    color: #007bff;
    /* Standard blue link */
    text-decoration: none;
    /* Remove underline */
}

a:hover {
    text-decoration: underline;
    /* Underline on hover */
}

ul {
    list-style: disc;
    /* Use standard disc bullets */
    margin-left: 20px;
    /* Indent lists */
    padding: 0;
}

ul li {
    margin-bottom: 8px;
}

.job-details,
.education-details {
    font-style: italic;
    margin-top: 0;
    margin-bottom: 10px;
    color: #555;
}

.job-entry,
.education-entry {
    margin-bottom: 25px;
    /* Space between entries */
}

hr {
    border: 0;
    height: 1px;
    background: #ccc;
    margin: 30px 0;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #777;
}

body.landing-page {
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

/* Correctly scoped h1 styling */
body.landing-page h1 {
    color: #ffffff !important;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
    font-weight: bold;
}

/* Optional: style the header and other elements on the landing page */
body.landing-page header,
body.landing-page main,
body.landing-page nav,
body.landing-page footer {
    background-color: rgba(0, 0, 0, 0.6);
    /* semi-transparent background for readability */
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem;
}

/* Adjust links so they look good on dark background */
body.landing-page a {
    color: #ffcc33;
}

body.landing-page a:hover {
    color: #ffe680;
}