﻿

body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;	
	justify-content: center;
	background-color: rgb(220, 245, 255);
	font-family: sans-serif;
	padding: 16px 0px 64px 0px;
}


.textContainer {
	font-size: 24px;
	width: 100%;
	text-align: center;
}

.titleContainer {
	font-size: 48px;
	width: 100%;
	text-align: center;
	padding: 12px;
}



.imgContainer {
	
	width: 75%;
	min-width: 400px;
	box-sizing: border-box;
	padding: 10px;
	border-style: solid;
	border-width: 1px;
	border-radius: 16px;
	margin: min(32px, 1.5vw);
	border-color: rgba(0, 0, 0, 0);
	box-shadow: 8px 8px 16px -32px rgb(0, 0, 0, 0);
	transition: box-shadow .5s ease;
	
}

.imgContainer:hover {
	box-shadow: 10px 6px 24px -2px rgb(0, 0, 0, .9);
}


img {
	width: 100%;
}




