h1 {
    text-align: center;
}
h3 {
    text-align: center;
}
h4 {
    font-size: 20px;
    margin-top: 0;
}
.image-text-flex {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
img {
    width: fit-content;
    height: auto;
    max-width: 250px;
    border-radius: 100%;
    outline: 2px dotted black;
    outline-offset: 5px;
    margin: 32px 10px;
}
.quick-facts span {
    background-color: #15679333;
    padding: 7px 15px 5px 15px;
    border-radius: 15px;
    line-height: 2.5;
    white-space: nowrap;
}

/* CV part */
.cv {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
}
.cv ul {
    margin-bottom: 0;
}
.cv li {
    font-size: 16px;
}
.left, .right {
    flex: 1;
}
.card {
    padding: 16px;
    border: black dotted 2px;
    border-radius: 16px;
    background-color: #15679310;
    margin-top: 32px;
}
.skills ul, .langs ul {
    margin-top: 0;
}
.date-employer {
    font-size: 12px;
    color: #333333;
}


/* mobile */
@media (max-width:768px) {
    .image-text-flex {
        flex-direction: column;
        gap: 0;
    }
    .image-text-flex img {
        width: 95%;
        height: auto;
        max-width: unset;
    }
}
