body {
    background: #111;
    color: #eee;
    font-family: Arial;
    text-align: center;
	margin: 0;
}

.container {
    margin-top: 50px;
}

.box {
    border: 1px solid #444;
    padding: 15px;
    margin: 15px auto;
    width: 400px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding: 10px 20px;
}

.logo {
    font-weight: bold;
    font-size: 20px;
	display: flex;
    align-items: center;
}
.logo .sub {
    font-size: 12px;
    color: #888;
    margin-left: 5px;
}
.logo img {
    height: 28px;
    margin-right: 8px;
}
.logo-text {
    margin-left: 8px;
    font-weight: bold;
}

.banner {
    background: #111;
    color: #ccc;
    padding: 10px 0;
    font-size: 24px;
    text-align: center;
    border-bottom: 1px solid #333;
}
.banner img {
    width: 100%;
    height: auto;
    display: block;
	max-height: none;
}

.nav a {
    color: #4da6ff;
    margin-left: 15px;
    text-decoration: none;
}

.nav a:hover {
    text-decoration: underline;
}

.footer {
    margin-top: 80px;
    padding: 25px 0;
    border-top: 1px solid #333;
    text-align: center;
    background: #111;
}

.footer-title {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 10px;
    color: #888;
    margin-bottom: 5px;
	letter-spacing: 0.5px;
}

.footer-copy {
    font-size: 11px;
    color: #777;
}