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: 5px;
}

#tweets-container {
    width: 100%;
}

.tweet {
    margin: 10px;
    padding: 10px;
    border: 1px solid;
    border-radius: 5px;
}

.tweet .date {
    font-style: italic;
}

#loader {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
}

@media (min-width: 880px) {
    .tweet {
        font-size: 35px;
    }

    .tweet > div:last-child {
        width: 75px;
    }
}

@media (max-width: 250px) {
    .tweet {
        margin: 0;
        padding: 5px;
        border-radius: 0;
    }
}

@media (max-height: 750px) {
    #twitter-account {
        font-size: 55px;
    }

    #bar {
        width: 75px;
    }

    #time {
        font-size: 11px;
    }

    #tweets {
        left: 75px;
    }

    .tweet {
        padding: 5px;
    }
}

@media (max-height: 500px) {
    #twitter-account {
        font-size: 35px;
    }

    #bar {
        width: 52px;
    }

    #time {
        display: none;
    }

    #tweets {
        left: 52px;
    }
}

@media (max-height: 300px), (max-width: 400px) {
    #twitter-account {
        font-size: 15px;
    }

    #bar {
        width: 20px;
    }

    #time {
        display: none;
    }

    #tweets {
        left: 20px;
    }
}

@media (max-height: 150px) {
    #twitter-account {
        display: none;
    }

    .tweet {
        margin: 0;
        border-radius: 0;
    }
}