html {
    display: table;
    margin: auto;
    font-family: "Lucida Console", "Courier New", monospace;
    background: linear-gradient(90deg,rgb(40, 0, 55) 0%, rgb(185, 0, 255) 25%, rgb(201, 53, 255) 50%, rgb(185, 0, 255) 75%, rgb(40, 0, 55) 100%);
    white-space: nowrap;
    overflow: hidden;
    
}


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

}

.box {
    border: 4px solid #280037;
    background-color: #38004d;
    height: 80%;
    padding: 10px;
    border-radius: 15px;
}

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

.chatbox {
    float:right;
    height: 70%;
    width: 35%;
    color: white;
}
button {
    border-style: solid;
    border-color: #320043;
    border-radius: 10px;
    background-color: #8400a7;
    cursor: pointer;
    font-size: 15px;
    box-shadow: 0 4px #490064;    
}
button:active {
    transform: translateY(4px);
    box-shadow: 0 1px #490064;
}
button:hover {
    background-color: #ca00ff;
}
.optionsbar {

}
.layoutswap {
    position: absolute;
}
.stylepicker {
    float:right;
    margin-right:10px;
    clear:both;    
}
hr {
    border-top: 1px solid #280037;
    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;
    }
}








