*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
	width: auto;
	height: auto;
}
a{
	text-decoration: none;
	color: black;
}
a:hover {
	color: red;
	text-decoration: underline;
}
header {
	width: 100%;
	height: 50px;
	background-color: rgba(98, 136, 167, 0.703);
	font-size: 30px;
}

p {
	color: blue;
	font-size: 20px;
}

div {
	margin: 20px;
	padding: 20px;
	font-size: 25px;
}
.content {
	width: 80%;
	margin: 0 auto;
	padding:60px;
	background-color: rgba(173, 216, 230, 0.3);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}	

	
img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
	height: 100%;
    
}
img:hover {
	width: 350px;
	height: 100%;
	border: 2px solid red;
	border-radius: 10px;
	box-shadow: 5px 5px 5px gray;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	transform: scale(1.1);
	transition: all 0.3s ease-in-out;
	transform: translateY(-5px);
	box-shadow: 5px 5px 5px gray;
	transition: all 0.3s ease-in-out;
	transform: scale(1.1);
	transition: all 0.3s ease-in-out;
	transform: translateY(-5px);
	box-shadow: 5px 5px 5px gray;
	transition: all 0.3s ease-in-out;
	transform: scale(1.1);
	transition: all 0.3s ease-in-out;

}
footer {
	color: green;
	font-size: 15px;
}