* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Outfit', sans-serif;
	background-color: hsl(217, 54%, 11%);
	width: 100%;
	height: 100vh;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}

.container {
	background-color: hsl(216, 50%, 16%);
	border-radius: 15px;
	width: 375px;
	padding: 1.5rem;
}

.image {
	position: relative;
}

.image div {
	position: absolute;
	background-color: hsl(178, 100%, 50%, 50%);
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.image div:hover {
	opacity: 1;
	cursor: pointer;
	border-radius: 10px;
}

.image div img {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

h3 {
	margin-top: 1.5rem;
	font-size: 20px;
	font-weight: 600;
}

.description {
	margin: 0.6rem 0 1rem 0;
	color: hsl(215, 51%, 70%);
	line-height: 28px;
	font-weight: 300;
}

.price-days {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid hsl(215, 32%, 27%);
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}

.price {
	display: flex;
	align-items: center;
	color: hsl(178, 100%, 50%);
	letter-spacing: 1px;
}

.price img,
.days img {
	margin-right: 5px;
}

.days {
	display: flex;
	align-items: center;
	color: hsl(215, 51%, 70%);
	font-size: 14px;
}

.author {
	display: flex;
	align-items: center;
	color: hsl(215, 51%, 70%);
}

.author span {
	color: white;
	margin-left: 5px;
}

.author img {
	border: 1px solid white;
	border-radius: 50%;
	margin-right: 1rem;
	width: 50px;
}

.image,
h3,
span {
	cursor: pointer;
}

h3:hover,
span:hover {
	color: hsl(178, 100%, 50%);
}
