@import url(https://fonts.googleapis.com/css?family=Muli:400,400i,700&display=swap);
.theme--dark {
    --teint: rgb(128, 203, 196);
    --teint--hover: rgb(111, 177, 171);
    --background: #121212;
    --background--inverse: #fff;
    --text-color: rgba(255, 255, 255, 0.87);
    --text-color--inverse: rgba(0, 0, 0, 0.87);
    --border-color: rgba(255, 255, 255, 0.87);
    --section-border-color: rgba(255, 255, 255, 0.2);
}

.theme--light {
    --teint: rgb(128, 203, 196);
    --teint--hover: rgb(111, 177, 171);
    --background: #fff;
    --background--inverse: #121212;
    --text-color: rgba(0, 0, 0, 0.87);
    --text-color--inverse: rgba(255, 255, 255, 0.87);

    --border-color: rgba(0, 0, 0, 0.87);

    --section-border-color: rgba(0, 0, 0, 0.2);
}

/* glob */

body,
html {
    font-family: 'Muli', serif;

    margin: 0;
}

footer {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    background: var(--background);
    border-top: 1px solid var(--border-color);
}

h3 {
    margin: 8px 0;
    color: var(--teint);
}
p {
    margin: 0 0 8px 0;
}
.company {
    font-size: 14px;
    font-style: italic;
}
.description {
    font-size: 14px;

    padding: 0;
    margin: 0;
    list-style: none;
}
li {
    padding: 4px 0;
}

img {
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

.aboutme {
    display: flex;
    max-width: 1000px;
    flex-flow: column;
    justify-content: center;
    align-items: center
}

@media (min-width: 1000px) {

.aboutme {
        flex-flow: row
}
    }

.aboutme__image {
    margin: 0 16px 16px 16px;
}

.aboutme__image-img {
    max-width: 170px;
    border-radius: 50%;
}

.aboutme__content {
    flex: 0 1 calc(100% / 3 * 2 - 16px);
    margin: 0 16px;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.contact__item {
    padding: 16px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

@media (min-width: 600px) {

.contact__item {
        width: auto
}
    }

.header {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    background: var(--background);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.3);
}

.section {
    display: flex;
    flex-direction: column;
    background: var(--background);
    min-height: 200px;
    border-bottom: 1px solid var(--section-border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    padding: 0 16px 24px 16px;
}


.cv__entry {
    width: 100%;
    max-width: 660px;
}
.cv__entry-content {
    transform: translateX(-100vw);
    transition: all 0.5s;
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    box-sizing: border-box;
    padding: 0 0 30px 20px;
    border-left: 1px solid var(--border-color);
}
.cv__entry-content--right {
    transform: translateX(100vw);
}
.cv__entry-content:after {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: block;
    position: absolute;
    background: var(--teint);
    top: 0;
    left: 0;
    transform: translateX(-50%);
}

@media (min-width: 700px) {
    .cv__entry-content {
        margin-right: 50%;
        align-items: flex-end;
        text-align: right;
        padding: 0 20px 30px 0;
        border: none;
        border-right: 1px solid var(--border-color);
    }
    .cv__entry-content--right {
        margin-right: 0;
        margin-left: calc(50% - 1px);
        border-right: none;
        padding: 0 0 30px 20px;
        border-left: 1px solid var(--border-color);
        align-items: flex-start;
        text-align: left;
    }

    .cv__entry-content:after {
        right: 0;
        left: auto;
        transform: translateX(50%);
        top: 0;
    }

    .cv__entry-content--right:after {
        left: 0;
        right: auto;
        transform: translateX(-50%);
    }
}

.cv__entry-content--active {
    transform: translateX(-0);
}

.skill {
    width: 500px;
    max-width: 100%;
    margin: 8px 0;
    height: 20px;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}
.skill__headline {
    margin: 8px 0;
}
.item {
    display: block;
    background: var(--teint);
    border-radius: 20px;
}

.skill__wrapper {
    width: 100%;
}

.container {
    width: 50px;
    height: 50px;
    padding: 10px;
    display: flex;
    place-content: center;
    overflow: hidden;
    background: var(--teint);
    border-radius: 10px;
    transition: 0.5s background;
    cursor: pointer
}

.container:hover {
        background: var(--teint--hover);
    }

.ic {
    width: 80%;
    overflow: visible;
    stroke: #fff;
    stroke-width: 2;
    stroke-linejoin: round;
    stroke-linecap: round;
}

