*{
	margin: 0;
	padding: 0;
}
header{
	background-color: blue;
}
header div{
	background-color: blue;
	max-width: 1200px;
	margin: 0 auto;
}
nav{
	background-color: blue;
	float: right;
}
header img{
	width: 100px;
	height: 100px;
	object-fit: cover;
}
nav li{
	list-style: none;
	display: inline;
}
nav a{
	text-decoration: none;
	color: white;
	margin: 20px;
	line-height: 100px
}
nav a:hover{
	color:yellow;
	font-size: 25px
}
.cards{
	max-width: 1200px;
	margin: 0 auto;
}
.card{
	background-color: #70a0d4; 
	height: 250px;
	margin: 30px;
}
.card img{
	height: 250px;
	float: left;
}
.card text{
	padding: 30px;
	margin: 30px;
}
footer{
	background-color: blue;
	text-align: center;
}
footer{
	background-color: dark blue;
	text-align: 30px;
	padding: 80px;
}
.bgimage{
background-image: url("https://i.pinimg.com/1200x/3d/f2/02/3df2021f65705481eda4ebfbd59ef7b9.jpg");
background-size: cover;
background-position: center;
}
.dark{
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	text-align: center;
	padding: 400px;
}
.form{
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px;
}
form{
	background-color: #a3bcff;
	width: 40%;
	font-size: 30px;
	text-align: center;
	padding: 20px;
	float: left;
}
input, textarea{
	width: 100%;
	height: 25px;
	font-size: 20px;
	margin: 10px 0;
	background-color: #3258a8;
	border: 2px solid #f7ffdb;
}
textarea{
height: 60px;
resize: none;
}
button{
	width: 25%;
	height: 30px;
	font-size: 20px;
	background-color: #f7ffdb;
	border: none;
	border-bottom: 3px solid #e3ff80;
	transition: 0.5s;
	border-radius: 10px; 
}
button:hover{
background-color: #c2b061;
cursor: pointer;
}
.footer{
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
}