/** fontawesome icons **/
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');

html, body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
}

select {
    font-size: large;
    border: 1px solid black;
    border-radius: 0px;
}

.header {
    background-color: #f0f0f0;
    padding: 20px;
    border-bottom: 2px solid #333;
}

.header .split-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.name-tagline h1 {
    font-size: 36px;
    margin: 0;
}

.name-tagline h2 {
    font-size: 20px;
    margin: 5px 0 0 0;
    font-weight: normal;
}

.links a {
    text-decoration: none;
}

.links a i {
    text-decoration: none;
    color: black;

    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    background-color: white;
    border: 2px solid black;
    font-size: 32px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.links a i:hover {
    background-color: black;
    color: white;
    transform: scale(1.1);
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.icon-overlay-container {
    position: relative;
    display: inline-block;
}

.icon-overlay-container .profile-icon {
    display: block;
    border-radius: 50%;
    border: 2px solid #000;
}

.icon-overlay-container img.icon-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.icon-overlay-container:hover {
    transform: scale(1.1);
    transition: transform 0.3s;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-header {
    font-size: 28px;
    margin-bottom: 15px;
    border-bottom: 2px dotted #333;
    padding-bottom: 5px;
    cursor: pointer;
}

.section-header h3 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    width: fit-content;
}

.split-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.split-content .left-column,
.split-content .right-column {
    min-width: 300px;
    margin: 10px;
}

.col1 {
    flex: 1;
}

.col2 {
    flex: 2;
}

.col3 {
    flex: 3;
}

.col4 {
    flex: 4;
}

.col5 {
    flex: 5;
}

.col6 {
    flex: 6;
}

.col7 {
    flex: 7;
}

.col8 {
    flex: 8;
}

.flex-right {
    display: flex;
    justify-content: flex-end;
}

.profile-image {
    width: 100%;
    max-width: 300px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.quick-facts-list li {
    list-style: none;
}

.quick-facts-list .bullet-icon {
    display: inline-block;
    width: 30px;
    text-align: center;
}

.thin-margins h4 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.thin-margins p {
    margin-top: 5px;
    margin-bottom: 10px;
}

.project-list {
    padding-left: 10%;
    padding-right: 10%;
}

.project-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-item {
    border-top: 6px double #ccc;
    padding-bottom: 20px;
}

.project-item-title {
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 2px dashed #555;
    padding-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.project-item-title h4 {
    margin-bottom: 15px;
    line-height: 32px;
}

.project-item-title p {
    font-size: medium;
}

.project-item-title a {
    color: #000;
}

.project-item-title a:not(:hover) {
    text-decoration: none;
}

.project-item-title a::after {
    content: "\f35d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 4px;
}

.project-image {
    max-width: 100%;;
}

@media screen and (max-width: 800px) {
    .split-content {
        flex-direction: column;
    }

    .split-content .left-column,
    .split-content .right-column {
        display: flex;
        flex-direction: column;
        margin: 0;
    }

    .split-content .profile-image {
        margin: auto;
    }

    .project-list {
        padding-left: 5px;
        padding-right: 5px;
    }
}

.publication-item {
    padding-left: 20px;
}

.work-item {
    padding-bottom: 10px;
    border-bottom: 6px double #ccc;
}
