body {
    /* font-family: Arial, sans-serif; */
    font-family: 'Source Code Pro', monospace;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

}

footer p {
    font-size: 16px;
}

footer img {
    width: 32px;
    height: 32px;
}




.container {
    max-width: 900px;
    margin: auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;

}

header .profile-img {
    width: 192px;
    height: 192px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 20px;
}

h1 {
    font-size: 36px;
    margin: 10px 0;
}

p {
    font-size: 18px;
    margin-bottom: 10px;
}

ul {
    list-style-type: square;
    margin-left: 20px;
    padding-left: 0;
}

section {
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

h2 {
    font-size: 28px;
    margin-top: 0;
    color: #333;
}

h3 {
    font-size: 22px;
    margin-bottom: 0;
}

.section-content {
    font-size: 18px;
    line-height: 1.6;
}

.section-title {
    font-size: 32px;
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.sidenote {
    font-size: 16px;
}

a {
    color: initial;
    text-decoration: underline;
}

/* a:hover {
    text-decoration: underline;
} */


.collapsing-header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.certificate-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}
.certificate-container img {
    width: 64px;   
    height: 64px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .collapsing-header {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        margin-bottom: 16px;
    }

    .work-location {
        margin-top: 0;
    }
    .work-period{
        margin-bottom: 0;
    }
}