body {
    margin: 0;
    height: 100%;
    font-family: "Corbel", sans-serif;
    background-color: #fffefc;
    color: #001524;
    line-height: 1.6;
}


h1 {
    font-size: 2.5rem;
    text-align: center;
}

h2 {
    font-size: 1.2rem;
    margin: 1rem 0 .5rem 0;
    padding-bottom: 5px;
    text-decoration: underline;
    text-underline: indianred;
}

h3 {
    font-size: 1.1rem;
    margin: 1rem 0 0.2rem;
}

p {
    font-size: 1.1rem;
    margin: 0.25rem 0 0.25rem;
    color: #333;
}

.about {
    text-align: left;
}

.links a {
    text-indent: initial;
    justify-content: center;
    margin: 0.5rem;
    color: #445d48;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.links a:hover {
    color: indianred;
    text-decoration: underline;
    text-underline-color: indianred;
}

.links-container{
    text-align: center;
}
.dashed-list {
    list-style-type: none;
    padding-left: 0;
    margin: 1rem 0 2rem;
}

.dashed-list li {
    margin: 1rem 0;
    position: relative;
    font-size: 1rem;
    padding-left: 100px;
    text-align: left;
}

.dashed-list li::before {
    content: "→ ";
    left: 4rem;
    position: absolute;
    color: #666;
}

.resume-container {
    max-width: 80%;
    margin: 2vh auto;
    padding: 0 1rem;
}


.resume-section {
    margin-bottom: 2rem;
}

.resume-entry {
    margin-bottom: 1.5rem;
}

.resume-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.resume-title {
    font-weight: bold;
    font-size: 1.1rem;
}

.position,
.resume-date {
    font-style: italic;
    font-size: 0.95rem;
    color: #555;
}

ul.resume-list {
    margin-top: 0.1rem;
    padding-left: 20px;
}

ul.resume-list li {
    margin-bottom: 0.1rem;
}

.resume-other {
    font-weight: bold;
    font-size: .9rem;
}


/* banner */
.banner-area {
    background-image: url(banner.JPG);
    height: 60vh;
    width: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: -1;
}


.profile-container {
    position: absolute;
    top: calc(60vh - 90px); /* 90px = half of profile image height */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
}

.profile-pic img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fffefc;
}

@media (max-width: 600px) {
    .profile-pic img {
        width: 120px;
        height: 120px;
    }
    .profile-container {
        top: calc(60vh - 60px); /* adjust for smaller image */
    }
}

.ack {
    font-size: .75rem;
    color: #555555;
    text-align: center;
    margin: 2rem 0 2rem 0;
}

