* {
    box-sizing: border-box;
}

.name-about {
    /*
    font-family: Poppins, Helvetica, Arial, sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: none;
    */
    font-size: 4em;
    line-height: 0.7em;
    color: white;
    position: absolute;
    top: 50px;
    right: 60px;
}

.skill-container {
    height: 100%;
/*
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    */
}

.skill-container img {
    /*max-width: 100%;*/
    display: block;
    margin: auto;
    width: 50%;
    height: 100%;
    padding: 2em;
}

.skill-container p {
    color: gray;
    margin-top: -1.5em;
    margin-bottom: 0;
    text-align: center;
}

/* The actual timeline (the vertical ruler) */

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}


/* The actual timeline (the vertical ruler) */

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: black;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}


/* Container around content */

.bubble {
    padding: 10px 10px 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}


/* The circles on the timeline */

.bubble::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background-color: white;
    border: 4px solid lightskyblue;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}


/* Place the bubble to the left */

.left {
    padding: 10px 40px 10px 10px;
    left: 0;
    position: absolute;
}


/* Place the bubble to the right */

.right {
    left: 50%;
}


/* Add arrows to the left bubble (pointing right) */

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid lightgrey;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent lightgrey;
}


/* Add arrows to the right bubble (pointing left) */

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid lightgrey;
    border-width: 10px 10px 10px 0;
    border-color: transparent lightgrey transparent transparent;
}


/* Fix the circle for bubbles on the right side */

.right::after {
    left: -13px;
}


/* The actual content */

.bubbleContent {
    margin: 0;
    padding: 20px 30px;
    background-color: lightgrey;
    position: relative;
    border-radius: 6px;
}

.bubbleContent p {
    margin: 0;
}

.bubbleContent img {
    max-height: 30px;
    padding-right: 10px;
    vertical-align: text-bottom;
    display: inline;
}

.dj {
    margin-top: -15em;
}

.tutor {
    margin-top: -12.5em;
}

.nightschool {
    margin-top: -10em;
}

.whow .bubbleContent {
    min-height: 30em;
}

.study .bubbleContent {
    min-height: 22.5em;
}

@media only screen and (max-width: 1199px) {
    .whow .bubbleContent {
        min-height: 25em;
    }
    .dj {
        margin-top: -18em;
    }
}

@media only screen and (max-width: 991px) {
    .name-about {
        font-size: 3em;
        top: 30px;
        right: 40px;
    }
    .study .bubbleContent {
        min-height: 23.5em;
    }
    .dj {
        margin-top: -20em;
    }
}

@media only screen and (max-width: 768px) {
    .name-about {
        font-size: 2em;
        top: 20px;
        right: 30px;
    }
    /* Place the timelime to the left */
    .timeline::after {
        left: 31px;
    }
    /* Full-width bubbles */
    .bubble {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    /* Make sure that all arrows are pointing leftwards */
    .bubble::before {
        left: 60px;
        border: medium solid lightgrey;
        border-width: 10px 10px 10px 0;
        border-color: transparent lightgrey transparent transparent;
    }
    /* Make sure all circles are at the same spot */
    .left::after,
    .right::after {
        left: 18px;
    }
    /* Make all right bubbles behave like the left ones */
    .right {
        left: 0%;
    }
    .left {
        position: relative;
    }
    .dj {
        margin-top: 0;
    }
    .lht {
        margin-top: 0;
    }
    .tutor {
        margin-top: 0;
    }
    .nightschool {
        margin-top: 0;
    }
    .whow .bubbleContent {
        min-height: 0;
    }
    .study .bubbleContent {
        min-height: 0;
    }
}