.channel-list {
    list-style-type: none;   
    padding: 0px;
    margin: 20px;
}

.channel-list h2 {
    display: inline-block;
    margin: 20px 0;
}

.channel-list li {
    margin-bottom: 15px;
}

#banner-image {
    text-align: center;
    margin-top: 60px;
    background-color: grey;
    color: white;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.center {
    height: 100%;
    position: relative;
}

.center p{
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.city-header-name {
    font-weight: 100;
    color: white;
}

.city-header-name .avg-price,
.city-header-name .population {
    font-weight: normal;
}

.follow-btn {
    cursor: pointer;
    margin-top: 15px;
    font-size: 12px;
}

.follow-btn:hover{
    text-decoration: none;
}

.followed {
    color: white;
    background-color: rgb(133,132,131);
    border-color:  rgb(133,132,131);
}

.avg-price-icon {
    vertical-align: initial;
    margin-right: 3px;
}

.population-icon {
    vertical-align: text-top;
    margin-left: 5px;
    margin-right: 3px;
}

/* Desktop specific */
@media (min-width: 769px) {
    #banner-image {
        height: 300px;
    }

    .city-header-name {
        font-size: 40px;
    }

    .city-header-name .avg-price,
    .city-header-name .population {
        font-size: 15px;
    }
}

@media (min-width: 1500px) {
    #banner-image {
        height: 350px;
    }
}

/* Mobile specific */
@media (max-width: 768px) {
    #banner-image {
        height: 143px;
    }

    .city-header-name {
        font-size: 24px;
    }

    .city-header-name .avg-price,
    .city-header-name .population {
        font-size: 14px;
    }
}