* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

/* body styles */

body {
	background-image: url('https://images.unsplash.com/photo-1605101479435-005f9c563944?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
}

/* heading 1 styles */

h1 {
	font-family: 'Ubuntu', sans-serif;
	font-size: 90px;
	text-align: center;
	color: white;
	margin-top: 30px;
	border-bottom: 3px solid white;
	padding-bottom: 10px; 
}

/* heading 3 styles */

h3 {
	font-family: Monospace;
	font-size: 60px;
	border-bottom: 3px solid rgba(0, 255, 0, 0.6);
	border-right: 3px rgba(0, 255, 0, 0.6) solid;
	width: 290px;
	height: auto;
	padding-bottom: 5px;
	padding-left: 20px;
	margin-bottom: 5px;
	margin-top: 40px;
	color: white;
}

/* image container styles */
		
.pics {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 150px;
	margin-left: -30px;
}

/* Individual image styles */

.pics img {
	margin-left: 30px;
	transition: 0.5s all;
}

/* image hover style */

.pics img:hover {
	border: 7px solid white;
	transform: scale(1.1);

}

/* heading 4 styles */

h4 {
	font-family: Cursive;
	font-size: 70px;
	color: white;
	text-align: center;
	padding-bottom: 120px;
	padding-top: 120px;
}
