* {
	box-sizing: border-box;
}

body {
	width: 100%;
	background-color: rgba(60, 189, 187, 0.2);
	margin: 0px;
	box-sizing: border-box;
}

header {
	width: 100%;
}

h1 {
	width: 100%;
	text-align: center;
	color: rgba(60, 189, 187, 1);
	background-color: rgba(60, 189, 187, 0.6);
	margin: 0px;
}

.top-nav {
	overflow: hidden;
	width: 100%;
	background-color: rgba(60, 189, 187, 0.6);
}

.logo {
	float: left;
	width: 70px;
	height: 70px;
	background-image: url("../CSS/logo.gif");
	background-size: cover;
	border-radius: 50px; 
	margin-left: 20px;
}


form.search {
	width: 100%;
	float: left;
	margin: 20px 0px;
}



form.search input[type=text] {
	width: 80%;
	padding: 10px 5px 10px 30px;
	outline: none;
	float: left;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	border: 1px solid rgba(41, 249, 245, 0.86);
	background-color: rgba(217, 249, 249, 0.8);
}

 button[type=submit] {
	width: 20%;
	height: 38px;
	float: left;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	border: 1px solid rgba(41, 249, 245, 0.86);
	border-left: none;
	background-color: rgba(217, 249, 249, 0.8);
}

button[type=submit]:hover {
	background-color: rgba(41, 249, 245, 0.86);
	cursor: pointer;
}

.social ul {
	list-style-type: none;
	display: block;
	width: 100%;
}

.social li {
	display: block;
	width: 100%;
	margin-bottom: 8px;
	background-color: #33b5e5;
	box-shadow: 0 2px 5px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.24);
}

.social li a {
	color: white;
	width: 100%;
	border: none;
}

.social li a:hover {
	background-color: #0099cc;
	transition: none;
	border: none;
}

.social .fa-brands, .fab {
	padding-right: 10px;
}

main {
	overflow: hidden;
}

article {
	width: 100%;
	float: left;
	text-indent: 10px;
	text-align: center;
	margin: 20px 10px;
	box-sizing: border-box;
	box-shadow: 0 2px 5px rgba(0,0,0,0.24), 0 2px 4px rgba(0,0,0,0.36);
}

.article-img1 {
	background-image: url("imagine1.jpg");
	max-width: 100%;
	height: 200px;
	background-size: cover;
	
}

.article-img2 {
	background-image: url("imagine2.jpg");
	max-width: 100%;
	height: 200px;
	background-size: cover;
	
}

.article-img3 {
	background-image: url("imagine3.jfif");
	width: 100%;
	height: 200px;
	background-size: cover;
}

.article-img4 {
	background-image: url("imagine4.jpg");
	background-position: center;
	width: 100%;
	height: 200px;
	background-size: cover;
}

.right-content article  {
	width: 100%;
	background-color: #33b5e5;
	box-shadow: 0 2px 5px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.24);
}

h3 {
	color: white;
    text-shadow: 2px 2px 4px #000000;
}

footer {
	text-align: center;
	background-color: rgba(60, 189, 187, 0.6);
	padding: 40px;
}