html {
    height: 100%;
    width: 100%;
    background-color: #000;
}
body {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: middle;
    justify-content: flex-start;
    flex-direction: column;
}
#banner {
    height: 45px;
    width: 100%;
    flex: 0;
    border-bottom: 1px solid #666;
    display: flex;
    align-items: middle;
    justify-content: space-between;
    flex-direction: row;
}
#title {
    font-size: 16px;
    color: #ccc;
    font-weight: bold;
    padding: 8px;
}
#title span {
    color: #666;
}
#sponsor {
    font-size: 12px;
    color: #666;
    padding: 8px;
    position: relative;
    top: 2px;
}
#sponsor a, #sponsor a:hover, #sponsor a:active, #sponsor a:visited {
    color: #666;
    font-weight: bold;
}
iframe {
    flex: 1;
    width: 100%;
    border: none;
}