
h1 {
	font-family: Georgia, 'Times New Roman', Times, serif;
	color: aqua;
}


body {
	background-image:url(4.gif);
	background-size:cover;
	background-repeat:no-repeat
}


.buttons{
	width: 100%;
	margin: auto;
	padding: 35px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: transparent;

}

.buttons ul li{
	list-style: none;
	display: inline-block;
	margin-left: 100px;
	position: relative;
	

}


.click{

	font-family:Georgia, 'Times New Roman', Times, serif;
	padding-left: 30px;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	
}

.buttons ul li::after{
	content:'';
	height: 3px;
	width: 0;
	background: #009688;
	position: absolute;
	left: 0;
	top: 180px;
	transition: 0.5s;
}

.buttons ul li:hover::after{
	width: 100%;

}


.figcaption{ color : cornflowerblue;



}