body {
    overflow: hidden;
}

#bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 125px;
    background-color: #00aced;
    color: #ffffff;
}

#bar > img {
    width: 100%;
}

#time {
    text-align: center;
    font-size: 22px;
}

#twitter-account {
    position: absolute;
    bottom: 0;
    -moz-transform: rotate(270deg);
    -moz-transform-origin: 0 0;
    -webkit-transform: rotate(270deg);
    -webkit-transform-origin: 0 0;
    font-size: 79px;
}

#tweets {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 125px;
    right: 0;
}

.tweet {
    display: table;
    width: 85%;
    margin: 10px;
    padding: 10px;
    border: 1px solid;
    border-radius: 5px;
}

.tweet > div {
    display: table-cell;
}

.tweet > div:first-child {
    display: inline-block;
    padding: 5px
}

.tweet > div:last-child {
    width: 45px;
    vertical-align: middle;
}

.tweet > div:last-child img {
    width: 100%;
}

.tweet .date {
    font-style: italic;
}

@media (min-width: 880px) {
    .tweet {
        font-size: 35px;
    }

    .tweet > div:last-child {
        width: 75px;
    }
}