*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
}

body{
	background-color: hsl(217, 54%, 11%);
	height: 100vh;
}

main{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

article{
	width: 90%;
	max-width: 338px;
	padding: 25px;
	background-color: hsl(216, 50%, 16%);
	border-radius: 15px;
	box-shadow: 10px 25px 10px hsl(217, 54%, 11%), -10px -15px 10px hsl(217, 54%, 11%);
}

.head-img{
	width: 100%;
	height: 270px;
	border-radius: 7px;
	position: relative;
	cursor: pointer;
}

.head-img:hover .overlay{
	display: block;
}

.head-img img{
	width: 100%;
	height: 100%;
	border-radius: 7px;
}

.overlay{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 7px;
	background: hsla(178, 100%, 50%, 50%) url('../assets/images/icon-view.svg') no-repeat center;
	display: none;
}

section{
	padding: 10px 0 20px;
	border-bottom: 1px solid hsl(215, 32%, 27%);
}

h2{
	margin-top: 10px;
}

#equ{
	color: hsl(0, 0%, 100%);
	text-decoration: none;
}

#equ:hover{
	color: hsl(178, 100%, 50%);
}

.parag{
	margin-top: 15px;
	font-size: 18px;
	color: hsl(215, 51%, 70%);
}

.cont{
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
}

.content{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.content div{
	width: fit-content;
	height: fit-content;
	display: flex;
	align-items: center;
}

.content p{
	font-size: 15px;
}

.eth{
	color: hsl(178, 100%, 50%);
}

.time{
	color: hsl(215, 51%, 70%);
}

footer{
	display: flex;
	gap: 15px;
	align-items: center;
	padding-top: 15px;
}

footer div{
	width: 30px;
	height: 30px;
	border: 2px solid hsl(0, 0%, 100%);
	border-radius: 50%;
}

footer div img{
	width: 100%;
	height: 100%;
}

footer p{
	font-size: 18px;
	color: hsl(215, 51%, 70%);
}

footer p a{
	text-decoration: none;
	color: hsl(0, 0%, 100%);
}

footer p a:hover{
	color: hsl(178, 100%, 50%);
}