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

body {
	font-family: 'Figtree', serif;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100svh;
	padding: 0.6rem;
	background-color: hsl(47, 88%, 63%);
}

.card-box {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	text-align: left;
	padding: 1.5rem;
	max-width: 20rem;
	background-color: hsl(0, 0%, 100%);
	border-radius: 8px;
	box-shadow: 5px 3px 5px 7px hsl(0, 0%, 7%);
	overflow: hidden;
}

.card-box img {
	display: block;
	max-width: 100%;
	border-radius: 10px;
}

.box-text button {
	margin-top: 1.2rem;
	padding: 0.4rem 0.8rem;
	font-weight: 900;
	background-color: hsl(47, 88%, 63%);
	border: none;
	font-family: 'Figtree', serif;
	cursor: pointer;
	transition: background-color 0.3s;
	border-radius: 8px;
}

.box-text button:hover {
	background-color: hsl(47, 78%, 75%);
}

.box-text p {
	margin-top: 1rem;
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 15px;
}

.box-text h1 {
	margin-top: 1.4rem;
	font-size: 1.3rem;
	font-weight: 900;
}

.box-text .description {
	letter-spacing: 1px;
	color: hsl(0, 0%, 42%);
	font-weight: normal;
}

.card-box .box-fotter {
	display: flex;
	align-items: center;
	margin-top: 2rem;
	gap: 1rem;
}

.card-box .box-fotter img {
	width: 30px;
	height: 30px;
}

.card-box .box-fotter span {
	font-weight: 900;
}
