html {
    display: table;
    margin: auto;
    font-family: Arial;
    background-image: url("/bg.png");
    background-repeat: repeat;    
}


body {
    vertical-align: middle;
    padding: 20px;
    border-right: 1px solid black;
    border-left: 1px solid black;
    width: 75vw;
    height: auto;
    background-color: #f7f7f7;
}
h1 {
    text-align: center;
    border: 1px solid #d0d0d0;
    background-color: #ffc9bd;    
}
.streambox {

}

.box {
    border: 1px solid #808080;
    background-color: #d0d0d0;
    height: 81%;
    padding: 10px;
    box-shadow: 2px 2px;
}

.stream {
    float: left;
    position: relative;
    width: 60%;
    max-height: 70vh;
}

.chatbox {
    float:right;
    height: 70%;
    width: 35%;
}
button {
    border-style: solid;
    border-color: #808080;
    background-color: #fff;
    cursor: pointer;
    font-size: 15px;
}
button:hover {
    background-color: #ffc9bd;
}
.optionsbar {

}
.layoutswap {
    position: absolute;
}
.stylepicker {
    float:right;
    margin-right:10px;
    clear:both;    
}
hr {
    border-top: 1px solid #808080;
    border-bottom: none;
}
@media (pointer:none), (pointer:coarse) {
    .chatbox {
	display: none;
    }
    .layoutswap {
	display: none;
    }
    .stream {
	overflow: none;
	float: none;
	width: 80vw;
	height: 80vh;
	text-align: center;
	display: block;
	margin: 0 auto;
    }
    body {
	width: 100vw;
	padding: 0px;
    }
}
