body {
    margin: 25px;
    background-color: #231f20;
    color: white;
    font-family: "Ambicase Fatface", Georgia, serif;
    text-align: center;
}


.top-nav {
    position: absolute;
    padding-bottom: 20px; /* creates space for the underline */
    right: 40px;
    top: 25px;
}

.top-nav::after {
   content: "";
    position: absolute;
    bottom: 10px;        /* sits at the bottom of the padded area */
    right: 0;
    width: 650px;
    height: 2px;
    background-color: white;
}

.top-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0px;
    padding-left: 40px
}

.top-nav a {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(0, 35, 0, .95);
    border: 1px solid #4c4f4e;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-family: "Ambicase Fatface", Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
    letter-spacing: 0.5px;
}

/* Header */
.resume-header {
    font-size: 17px;
    color: #f9f5f5;
    display: flex;
    flex-direction: column;   /* stack nav, name, title */
    align-items: flex-start;  /* branding to the left */
    position: relative;
    padding: 30px 10px 20px;
    padding-left: 25px;       /* how far in from the left */
    text-align: left;
    
}

.diamond {
    color: #080808;      /* matches your border gray */
    padding: 0 10px;     /* spacing around the diamond */
    font-size: 20px;     /* slightly larger for elegance */
}

.resume-name {
    padding-top: 90px;
    font-size: 56px;
    margin: 0;
    letter-spacing: 1px;
    -webkit-text-stroke: .3px #fbfafa; /* outline color */
    -webkit-text-fill-color: rgb(3, 52, 3);   /* inside color */
}

.resume-title {
    font-size: 22px;
    margin-top: 10px;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Layout */
.resume-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    padding: 40px 20px;
}

/* Left column */
.resume-left {
    background: rgba(55, 52, 55, 0.25);
    padding: 25px;
    border-radius: 10px;
    list-style-position: left;
    padding-left: 25px;
    margin: 0 auto;
    width: fit-content;
    text-align: left;
    margin-bottom: 50px;
}

/* Sections */
.resume-section ul {
    list-style: none;
    padding-left: 0;
    text-align: Left;
}

.resume-left ul {
    list-style-position: inside;
    padding-left: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: left;
}

/* Decorative diamond above Skills */
.resume-section.skills::before {
    content: "❖";
    display: block;
    font-size: 28px;
    color: #0b0b0b;
    margin: 0 auto 10px;
    text-align: center;
    padding: 0px;
}

/* Decorative diamond above Skills */
.resume-section.skills::before {
    content: "❖";
    display: block;
    font-size: 28px;
    color: #0b0b0b;
    margin: 0 auto 15px;
    text-align: center;
}


.resume-section ul li {
    display: block;
    padding-left: 1.4em;   /* space for the diamond */
    text-indent: -1.4em;   /* pulls first line back so diamond sits left */
    line-height: 1.5;
    margin-bottom: 10px;   /* space between each skill */   
}

.resume-section ul li::before {
    content: "✦ ";
    color: rgb(11, 11, 11);
    margin-right: 6px;
}

.resume-section {
    margin-bottom: 50px;
}

.resume-section h3 {
    font-size: 29px;
    margin-bottom: 30px;
    border-bottom: 1px solid #4c4f4e;
}

.resume-right p {
    max-width: 45ch;
    margin: 0 auto 30px;
    line-height: 1.6;
    padding-top: 15px;
}

/* Jobs */
.job {
    margin-bottom: 40px;
}

.job h4 {
    margin: 0;
    font-size: 20px;
    max-width: 60ch;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.job-dates {
    font-size: 14px;
    opacity: 0.7;
}

/* Lists */
ul {
    margin: 10px 0 10px 130px;
    padding: 0;
}

h3 {
    -webkit-text-stroke: .1px #f9f5f5; /* outline color */
    -webkit-text-fill-color: rgb(3, 52, 3);   /* inside color */

}

.branding img {
    width: 270px;   /* adjust to the size you want */
    height: auto;
    padding-left: 8px;
    padding-bottom: 2px;   /* keeps proportions correct */
}

/* Education Section */
.resume-section.education p {
    margin: 2px auto;
    line-height: 1.4;
    font-size: 18px;
    max-width: 40ch;
}

/* Decorative bullet above Experience */
.resume-section.experience::before {
    content: "❖";
    display: block;
    font-size: 28px;
    color: #0b0b0b;
    margin: 20px auto 20px;
    text-align: center;
    padding-bottom: -10px;
}

.resume-section.education strong {
    font-size: 19px;
    letter-spacing: 0.5px;
    -webkit-text-stroke: .1px #f9f5f5;
    -webkit-text-fill-color: rgb(3, 52, 3);
}

/* Decorative bullet above Education */
.resume-section.education::before {
    content: "❖";
    display: block;
    font-size: 28px;
    color: #0b0b0b;
    margin: 20px auto 20px;
    text-align: center;
    padding-top: 0px;
}

.resume-section.education .program {
    color: #e5e5e5;
    opacity: 0.9;
    font-size: 17px;
}


.resume-footer {
    color: white;
    font-family: "Ambicase Fatface", Georgia, 'Times New Roman', Times, serif;
    padding-right: 395px;
    font-size: 10px;
    padding-top: 12px;
    text-align: center;
}
