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

body {
	font-family: 'Manrope', sans-serif;
	background-color: hsl(215, 16%, 85%);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100svh;
}

.main-content {
	padding: 1rem;
}

.container {
	position: relative;
	max-width: 22rem;
	background-color: hsl(210, 46%, 95%);
	border-radius: 8px;
	box-shadow: 0px 0px 20px 0px rgba(66, 68, 90, 1);
}

.image-drawers {
	display: block;
	max-width: 100%;
	border-radius: 8px 8px 0 0;
}

.text-content {
	padding: 0 1.8rem;
}

.primary-text {
	margin-top: 1.3rem;
	font-size: 1.1rem;
	color: hsl(217, 19%, 35%);
	font-weight: bold;
}

.secondary-text {
	margin-top: 1.3rem;
	font-size: 0.8rem;
	line-height: 180%;
	color: hsl(214, 17%, 51%);
}

.person-boxes {
	margin-top: 0.8rem;
	display: flex;
	align-items: center;
}

.person-box {
	padding: 1.3rem 0;
	font-size: 0.8rem;
}

.image-avatar {
	width: 35px;
	height: 35px;
	border-radius: 50%;
}

.person-box p {
	margin-left: 0.6rem;
	color: hsl(217, 19%, 35%);
	font-weight: bold;
}

.person-box span {
	margin-left: 0.6rem;
	color: hsl(214, 17%, 51%);
	font-weight: 300;
}

.image-share {
	padding: 0.6rem;
	border-radius: 50%;
}

.btn-share {
	border: none;
	cursor: pointer;
	border-radius: 50%;
	background: none;
	z-index: 1000;
}

.share-one {
	margin-left: 5rem;
	padding: 0.5rem;
	border-radius: 50%;
	background-color: hsl(210, 21%, 89%);
	transition: background-color 0.3s;
}

.share-one:hover {
	background-color: hsl(217, 19%, 35%);
}

.share-boxes {
	position: absolute;
	bottom: 0px;
	width: 100%;
	display: none;
	justify-content: space-between;
	align-items: center;
	padding: 1.6rem;
	border-radius: 0 0 8px 8px;
	background-color: hsl(217, 19%, 35%);
	z-index: 100;
}

.active {
	display: flex;
}

.share-box-one {
	display: flex;
	align-items: center;
}

.img-box {
	display: flex;
	align-items: center;
	margin-top: 0.3rem;
}

.img-box img {
	padding: 0 0.6rem;
}

.share-box-one p {
	padding: 0 0.6rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-size: 0.8rem;
	color: hsl(212, 23%, 69%);
}

.share-two {
	padding: 0.5rem;
	border-radius: 50%;
	background-color: hsl(212, 23%, 69%);
}

@media (min-width: 768px) {
	.container {
		display: flex;
		justify-content: center;
		align-items: center;
		max-width: 50rem;
	}

	.image-drawers {
		max-width: 45%;
		border-radius: 8px 0 0 8px;
	}

	.share-one {
		margin-left: 10rem;
	}

	.img-box {
		padding: 0;
		margin-left: 1rem;
	}

	.share-boxes {
		width: 30%;
		bottom: 90px;
		right: -50px;
		border-radius: 8px 8px 8px 8px;
		padding: 1.3rem;
		box-shadow: 0px 0px 5px 0px rgba(66, 68, 90, 1);
	}

	.share-boxes::before {
		content: '';
		position: absolute;
		bottom: -10px;
		left: 50%;
		right: 50%;
		transform: translate(-50%) rotate(45deg);
		width: 20px;
		height: 20px;
		background-color: hsl(217, 19%, 35%);
	}
}
