
body{
	margin:0px;
}

#header{
	background-color:#00acc1;
	display:flex;
	align-items:center;
	padding:15px;
	user-select:none;
}
#header label {
	width:75%;
	font-size:1.5em;
}
#header div {
	width:25%;
}
#header button {
	float:right;
	background: #616161;
	border-radius: 3px;
	outline: 0;
	border: 0;
	-webkit-translation: all 0.3 ease;
	trasition: all 0.3 ease;
	curser: pointer;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

#Install_PWA  {
	float:right;
	margin-top:15px
}

#Install_PWA span {
	color:white;
    border-radius: 50%;
	transition: all 0.1s ease-in-out;
	margin-left:-20px;
	font-size:24px;
}

#Install_PWA span:hover{
	background-color: #0095a8;
	box-shadow: 0px 0px 0px 15px #0095a8;
	transform: scale(1.05);
}

#header button:hover,#header button:active{
	background: #8e8e8e;
}
#header button span {
	font-size: 48px;
	color: #FFFFFF;
}

.main_container, .main_content{
	display:flex;
	align-items:center;
}

.main_content {
	margin-top:100px;
	margin-left:auto;
	margin-right:auto;
}


.left {
	/*background-color: #2196F3; /*color usefull when troubleshooting flow*/
	margin-left:auto;
}

.right {
	/*background-color: #04AA6D; /*color usefull when troubleshooting flow*/
	width:240px;
	margin-right:auto;
}


/* Img Buttons */
a{
	color: white;
}
.main_content img{
	height:200px;/*was 200px*/
	width:200px;/*was 200px*/
	padding: 10px;
	margin: 10px;
	border-radius: 3px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.main_content img:hover,.main_content img:active{
	background: #F1F1F1;
}


/* Changes For Screen Sizes*/
@media screen and (max-width: 1000px) {
	.main_content{
		display:block;
	}
	.left, .right {
		width: 100%;
	}
}

@media screen and (max-width: 750px) {
	.main_content{
		margin-top:75px;
	}
	.main_content img{
		height:125px;/*was 200px*/
		width:125px;/*was 200px*/
	}
}

@media screen and (max-width: 500px) {
	.main_content{
		margin-top:50px;
	}
	.main_content img{
		height:75px;/*was 200px*/
		width:75px;/*was 200px*/
		margin: 5px;
	}
	#header button span {
		font-size: 24px;
	}
	#Install_PWA  {
		margin-top:3px;
	}

}