html, body{ 
	background: darkslategray;
	color: white;
	height:100%;
	margin:0;
}

h1,h2,h3,h4,h5,h6 {
	color: white;
	margin: 2vh auto;
	display: block;
}

/* Trick */
body{ 
  display:flex; 
  flex-direction:column; 
}

footer {
	margin-top:auto; 
	padding: 15px;
    background-color: black;
    color: white;
}

a {
	color: blue;
	text-decoration: underline;
}

.main {
    width: 50%;
    height: 90%;
    margin: 0 auto;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.left {
	float: left;
}

.right {
	float: right;
}

.center {
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
}

.bottom {
	margin-top: auto;
}

.spacing * {
	margin-left: 10px;
}

.cam {
	border-bottom: solid black 5px;
}

.miniplayer {	
	padding: 0.1%;
}

.miniplayer video {
	width: 100%;
}

@media only screen and (min-width: 800px) {
	.miniplayer {
		width: 33%;
		display: inline-flex;
		flex-direction: column;
	}
}

.hidden {
	display: none;
}

.error {
	background-color: red;
	color: white;
	font-weight: bold;
}

.banner {
	align-content: center;
	position: fixed;	
	top: 1%;
	left: 1%;
	width: 94%;	
	padding: 2%;	
	border-radius: 5px;	
}

button {
	font-weight: bold;
	margin: 10px;
	padding: 5px 25px;
	border-radius: 15px;
	background-color: rgb(0, 120, 255);
	color: white;
}

progress {
	width: 100%;
	color: blue;
}

progress::-moz-progress-bar,progress::-webkit-progress-value {
        background-color: blue;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .spinner {
    animation: App-logo-spin infinite 5s linear;
  }
}
