body {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    background: #f5f5f5;
    color: #222;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.resume-container {
    max-width: 800px;
    background: white;
    margin: 40px auto;
    padding: 40px 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

header {
    margin-bottom: 20px;
}

header h1 {
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact {
    display: flex;
    justify-content: space-between;
    /* put items at both end */
    align-items: center;
    /* vertically centers them */
    flex-wrap: wrap;


    font-size: 14px;
    color: #444;
}

.contact a {
    color: #00008b;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.cv-section {
    background: #e0e0e0;
    padding: 6px 10px;
    margin-top: 25px;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    border-left: 4px solid #000000;
}

.section-content {
    margin-top: 8px;
    padding-left: 10px;
}

.item-header,
.item-sub {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

ul {
    margin-top: 4px;
    padding-left: 20px;
}

ul.skills-list li {
    margin-bottom: 5px;
}

.github-link {
    color: #00008b;
    text-decoration: none;
}

.github-link:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #777;
}