/* Custom Styles and responsive layout choices */

/* Helpers */

.red{
    color: #ff0000;
}

.blue{
    color: #0000ff;
}

/* Global */

img{
    max-width: 100%;
}

img.logo{
    max-width: 75px;
}

.video-user{
    padding: 1rem 2rem;
    display: inline-block;
    text-align: center;
}

.video-user img {
    max-width: 350px;
}

ul.chat-entries {
    padding-left: 0;
    max-width: 300px;
}

.chat-entries li {
    list-style-type: none;
}

.chat-entries em {
    margin-top: 1rem;
    display: block;
}

.chat-entries input[type="text"] {
    width: 100%;
    margin: 1rem 0;
    padding: 0.75rem;
}

.tab-container {
    text-align: center;
    margin: 1rem auto;
}

ul#myTab {
    display: inline-flex;
}

/* Desktop */

@media ALL and (min-width: 1280px){

    aside, main{
        display:inline-block;
    }

    aside{
        max-width: 20%;
    }

    main{
        max-width: 75%;
    }
}