@media all and (max-width: 800px){
	img.app-img-navbar{
		width: 145px;
		height: auto;
	}
}

@media all and (min-width: 800px){
	img.app-img-navbar{
		width: 195px;
		height: auto;
	}
}

#video-div{
	background: rgba(255, 255, 255, .3);
	width: 100vw;
	text-align: center;
	margin-top: 50px;
	display: flex;
}

#video-div > div{
	flex-basis: 50%;
	padding: 10px 0;
}

#video-div > div:first-child{
	border-right: solid 1px rgba(0, 0, 0, .3);
}

h3{
	color: white;
	font-weight: 600;
	text-align: center;
	text-shadow: 1px 1px black;
}

#video-div div img{
	width: 240px;
	height: auto;
  transform: scale(1);
  transition: transform 0.3s ease-in-out; /* Smooth transition */
}

#video-div div img:hover {
  transform: scale(1.2); /* Combined transforms */
}




