
html,
body {
    background-color: black;
    color: gold;
    display: flex;
    flex: 1;
    width: 100vw;
}

body {
    display: flex;
    flex-flow: column;
}

.banner {
    display: flex;
    flex: 1 0 auto;
    font-size: 24pt;
    width: 100%;
    
}

.banner-col {
    display: flex;
    flex: 0 1 auto;
    font-size: 24pt;
    width: 100%;
    flex-direction: column;
    margin-left: 1em;
}


.banner-lines {
    display: flex;
    flex: 1 0 auto;
    flex-direction: row;
    justify-content: center;
}

.overlay-outer {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    justify-content: center;
    overflow: scroll;
}

.overlay {
    background-color: black;
    border: 3px solid gold;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    margin: auto;
    border-style: double;
    border-width: 6px;
    justify-content: center;
    padding-top: .5em;
    padding-top: .5em;
    padding-left: 1em;
    padding-right: 1em;
}

.text-pic {
    display: inline-flex;
    flex: 1 0 auto;
    font-size: 16pt;
    flex-direction: row;
    width: 100%;
    max-height: 60vh;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.text-part {
    min-width: 25em;
    max-width: 30%;
    overflow-y: scroll;
}

.pic-part {
    width: 100%;

    img {
	width: 100%;
	height: 100%;
	object-fit: contain;
    }
}

.centred {
    display: flex;
    flex: 1 1 auto;
    width: 100%;
    justify-content: center;
    margin: auto;
}

.button {
    display: flex;
    flex: 0 0 auto;
    font-size: 22pt;
    margin: 1em;
    padding: .5em;
    background-color: green;
    color: white;
    border: 2px solid;
    justify-content: center;
    
}


.smallnumber {
    width: 3em;
}

.progressMeter {

}

.progressBar {
    display: flex;
    flex-direction: row;
    flex: 0 0 auto;
}
