@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
}
.header {
	width: 100%;
	float: left;
	padding:15px 0;
/*	border-bottom: 1px solid #ddd;*/
	margin-bottom: 40px;
}
.header img {
	width: auto;
	height: 80px;
}
.middle {
	width: 100%;
	float: left;
	margin-bottom: 80px;
}
.middle .box {
	padding:20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
	border-radius: 7px;
	text-align: center;
	border:2px solid transparent;
	transition: transform .8s;
	position: relative;
}
.middle .box:hover {
	border:2px solid #36beb8;
	transform: scale(1.1); 
}
.middle .box a {
	color: #444;
	text-decoration: none;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.middle .box span {
	display: inline-block;
	font-size: 12px;
	color: #FFF;
	background: #36beb8;
	padding: 4px 10px;
	border-radius: 5px;
}
.middle.iframe-stream {
	height: 100vh;	
	margin-bottom: 0;
}
.robot-name {
	position: fixed;
	left: 10px;
	top: 10px;
	background: #36beb8;
	display: inline-block;
	padding:8px 15px;
	font-size: 18px;
	font-weight: bold;
	color: #FFF;
	border-radius: 5px;
}
.robot-name img {
	height: 25px;
	width: auto;
	margin-right: 10px;
}
.robot-name a, .robot-name a:hover {
	color: #FFF;
	text-decoration: none;
}
footer {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	text-align: center;
	padding: 15px;
	z-index: 999999;
	background: #FFF;
}
footer a, footer a:hover {
	color: #444;
	text-decoration: none;
}
footer img {
	width: auto;
	height: 30px;
	margin-left: 5px;
}