body {
    background-color: #1d1d1d;
    min-height: 100vh;
    margin: 0;
    font-family: "Droid Sans", sans-serif;

    &:before {
        content: "";
        position: fixed;
        top: 0px;
        left: 50%;
        bottom: 0px;
        transform: translateX(-50%);
        width: 4px;
        background-color: #fff;
    }

    .entries {
        width: calc(100% - 80px);
        max-width: 2000px;
        margin: auto;
        position: relative;
        left: -5px;

        .entry {
            width: calc(50% - 80px);
            float: left;
            padding: 20px;
            clear: both;
            text-align: right;

            &:not(:first-child) {
                margin-top: -60px;
            }

            .title {
                font-size: 32px;
                margin-bottom: 12px;
                position: relative;
                color: #fff;

                &:before {
                    content: "";
                    position: absolute;
                    width: 8px;
                    height: 8px;
                    border: 4px solid #ffffff;
                    background-color: #1d1d1d;
                    border-radius: 100%;
                    top: 50%;
                    transform: translateY(-50%);
                    right: -73px;
                    z-index: 1000;
                }

                &.big:before {
                    width: 24px;
                    height: 24px;
                    transform: translate(8px, -50%);
                }
            }

            .type {
                background-color: #333;
                color: #fff;
                padding: 10px;
                border-radius: 4px;
                font-weight: bold;
            }
            
            .body {
                background-color: #333;
                color: #aaa;
                padding: 10px;
                border-radius: 4px;
                p {
                    line-height: 1.4em;
                }
            }

            .image {
                background-color: #333;
                padding: 5px;
                border-radius: 10px;
                overflow: hidden;
            }

            &:nth-child(2n) {
                text-align: left;
                float: right;

                .title {
                    &:before {
                        left: -63px;
                    }

                    &.big:before {
                        transform: translate(-8px, -50%);
                    }
                }
            }
        }
    }
}