* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    display: flex;
    flex-direction: column;
    font: 1rem verdana, arial, helvetica, clean, sans-serif;
	background-color: #292929;
	color: #cccccc;
}

#mobile-header {
    text-align: center;
    padding: 10px 0;
    flex: 0 0 auto;
}

#mobile-logout {
    position: absolute;
    top: 4px;
    right: 4px;
    color: #F68B21;
    font-size: 0.75rem;
    text-decoration: none;
}

#mobile-logout:hover {
    color: white;
}

#fregatt-logo {
    width: 206px;
    height: 60px;
}

#mobile-content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    background-color: #292929;
}

#error-bar {
    width: 100%;
    text-align: center;
    justify-content: center;
    background-color: #F68B21;
    color: #292929;
    font-size: 1.25rem;
    padding: 16px;
}

#mobile-footer {
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    flex: 0 0 auto;
}
