html,
body {
    width: 100%;
    height: 100%;
    background-color: black;
    overflow: hidden;
}

.wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr minmax(50px, 600px) 1fr;
    grid-template-rows: 1fr minmax(50px, 600px) 1fr;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
}

.header {
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 30px;
    color: white;
    padding-bottom: 8px;
}

.bbrc {
    flex: 1 1 auto;
    object-fit: contain;
}

.footer {
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 20px;
    color: white;
    padding-top: 8px;
}

.footer svg {
    margin-right: 10px;
    position: relative;
    top: 4px;
}

a:link {
    color: white;
}

a:visited {
    color: white;
}

a:hover {
    color: lemonchiffon;
}

a:active {
    color: lemonchiffon;
}