@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');

/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: inherit;
}

* {
	box-sizing: border-box;
}

.title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	color: #111729;
	font-weight: bolder;
	margin-bottom: 20px;
}

.body-text {
	font-family: 'Lato', sans-serif;
	font-size: 1rem;
	color: #4A5567;
}

.small-text {
	font-family: 'Lato', sans-serif;
	font-size: 1rem;
	color: #111729;
	font-weight: bolder;
}

body {
	min-height: 100vh;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	background-color: #F2F5F9;
}

main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.card{
	height: 530px;
	width: 420px;
	margin-top: 90px;
	border-radius: 15px;
	background-color: #FFFFFF;
}

.image-container {
	position: relative;
}

.image {
	width: 100%;
	border-radius: 15px;
}

.overlay {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 1;
}

.card-content {
	padding: 0 30px 30px;
	display: flex;
	flex-direction: column;
}

.separator {
	border: 1px solid #F2F5F9;
	margin: 25px 0;
	padding: 0;
	margin-left: -30px;
	width: 117%;
}

.card-footer {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.emoji {
	width: 40px;
	height: 40px;
	border: 3px solid #F2F5F9;
	margin-right: 10px;
	border-radius: 50px;
}
