@charset "UTF-8";

body {
    background: #fff; /*linear-gradient(55deg, #4e75b9 30%, #5cbf98 90%);*/
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    font-family: "Source Sans Pro", arial, sans-serif;
    font-weight: 300;
    color: #333;
    box-sizing: border-box;
}

body * {
    box-sizing: border-box;
}

.timeline {
    width: 100%;
    max-width: 800px;
    background: #fff;
    padding: 50px 32px;
    position: relative;
    box-shadow: 0.5rem 0.5rem 2rem 0 rgba(0, 0, 0, 0.2);
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0px;
    left: calc(30% + 15px);
    bottom: 0px;
    width: 2px;
    background: #ddd;
}

.timeline:after {
    content: "";
    display: table;
    clear: both;
}

.entry {
    clear: both;
    text-align: left;
    position: relative;
}

.entry .title {
    margin-bottom: 0.5em;
    float: left;
    width: 30%;
    padding-right: 30px;
    text-align: right;
    position: relative;
}

.entry .title:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 4px solid salmon;
    background-color: #fff;
    border-radius: 100%;
    top: 15%;
    right: -13px;
    z-index: 99;
}

.entry .title h3 {
    margin: 0;
    font-size: 120%;
}

.entry .title p {
    margin: 0;
    font-size: 80%;
}

.entry .desc {
    margin: 0 0 3em;
    float: right;
    width: 70%;
    padding-left: 30px;
}

.entry .desc p {
    line-height: 1.4em;
}

.entry .desc p:first-child {
    margin-top: 0;
    font-weight: 400;
}

.entry .desc ul {
    color: #999;
    padding-left: 0;
    list-style-type: none;
}

.entry .desc ul li:before {
    content: "–";
    margin-right: 0.5em;
}