a#goBackLink{
    display: block;
    margin: 80px auto;
    text-align: center;
    width: 300px;
    padding:50px;
}

img.goBackImageNotHovered{
    width: 40px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    position: relative;
    right: -50px;
    transition: right 0.6s ease;
}

img.goBackImageHovered{
    width: 40px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    position: relative;
    right: 50px;
    transition: right 0.6s ease;
}

span#goBackText{
    font-size: 26px;
    vertical-align: middle;
}

span.returnTextNotHover{
    visibility: hidden;
    opacity: 0;
    font-size: 24px;
    vertical-align: middle;
    transition: opacity 0.0s ease;
    position: relative;
    left: 80px;
}

span.returnTextHover{
    visibility: visible;
    opacity: 1;
    font-size: 24px;
    vertical-align: middle;
    transition: opacity 0.6s ease;
    position: relative;
    left: -10px;
}

.fade{
    opacity: 0;
}

* {
    box-sizing: border-box;
}

h2{
    background-image: none;
}

body {
    font-family: 'robotothin';
    /*
    background-image: url("../Images/gridBackground.png");
     */
    padding-bottom: 70px;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

p{
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 1.25em;
    background-image: none;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 70px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: black;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.container {
    padding: 0 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    background-image: none;
    margin-bottom: 250px;
}

.container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -14px;
    background-color: #0eb7da;
    border: 4px solid #0eb7da;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid black;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent black;
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid black;
    border-width: 10px 10px 10px 0;
    border-color: transparent black transparent transparent;
}

.right::after {
    left: -14px;
}

.content {
    text-align: center;
    padding: 0px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    background-image: none;
}


@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }

    .container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .container::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    .left::after, .right::after {
        left: 15px;
    }

    .right {
        left: 0%;
    }
}