
body {
    background-color: #F4F4F4;
    padding: 0px;
    margin: 0px;
    font-family: lato;
}
header {
    background: #1F1D22;
    position: fixed;
    width: 100%;
    z-index: 10;
}
.logo {
    display: block;
    width: 240px;
    margin: 5px auto;
}
header + section {
    padding-top: 100px;
}
.content {
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 40px;
}
h1 {
    font-size: 32px;
    font-family: lato;
    text-align: center;
}
a {
    color: #414141;
    text-decoration: none;
}
#panels {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}
.panel {
    float: left;
    width: calc(20% - 10px);
    margin-left: 5px;
    background: #F4F4F4;
    text-align: center;
}
.panel .title {
    position: relative;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    background: #999;
    color: #FFF;
}
.panel ul {
    height: 480px;
    padding: 0;
    list-style: none;
    color: #414141;
}
.panel .top {
    padding-top: 10px;
}
.panel .desc {
    color: #AFAFAF;
    display: block;
}
.panel .server .connect {
    display: none;
}
.panel .server .choose {
    background-position: right;
    background-repeat: no-repeat;
    background-position: right;
    background-size: 12px 12px;
    padding-right: 16px;
}
.collapsed {
    background-image: url(../img/icon_right.png);
}
.expanded {
    background-image: url(../img/icon_down.png);
}
.panel .url {
    background-image: url(../img/icon_web.png);
    background-position: right;
    background-repeat: no-repeat;
    background-position: right;
    background-size: 12px 12px;
    padding-right: 16px;
}
.banner {
    width: 60%;
    height: 60%;
    resize: both;
}

@media screen and (max-width: 800px) {
    .banner {
        display: none;
    }
    .panel {
        width: calc(33% - 10px);
    }
}

@media screen and (max-width: 500px) {
    .panel {
        width: calc(100% - 10px);
    }
}
