.block {
	background: #fff;
	width: 250px;
	padding: 1rem;
	background: #ffffff;
	border-radius: 8px;
	display: block;
	&-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		.title {
			display: flex;
			align-items: flex-start;
			.tag {
				display: flex;
				align-items: center;
				justify-content: center;
				margin-left: 4px;
				background: #f7f7f7;
				color: #1c1c1c;
				text-align: center;
				padding: 0 4px;
				letter-spacing: 0.04em;
				text-transform: uppercase;
				font-weight: 500;
				font-size: 10px;
				line-height: 16px;
				border: 1px solid #e8e8e8;
				border-radius: 96px;
			}
		}
	}
}
.writing {
	background: #ffffff;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	overflow: hidden;
	padding: 12px;
	.textarea {
		width: 100%;
		font-family: "Inter";
		color: #585757;
		overflow-y: auto;
		appearance: none;
		border: 0;
		outline: 0;
		resize: none;
		font-size: 16px;
		line-height: 24px;
	}
	&:focus-within {
		border: 1px solid #0f2336;
		box-shadow: 0px 0px 2px 2px rgba(0, 133, 255, 0.15);
	}
	.footer {
		padding-top: 12px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-top: 1px solid #e8e8e8;
		.text-format {
			display: flex;
			align-items: center;
			gap: 12px;
		}
	}
}

.group-button {
	display: flex;
	gap: 16px;
}
.comment{
	width: 200px;
}
.description{
	text-align: justify;
}
.description p{
	text-align: justify;
}
#social-links ul{
	display: flex;
	gap: 10px;
}
#social-links ul li a{
	color: #555;
	font-size: 18px;
	transition: 0.5s;
}
#social-links ul li a:hover{
	color: blueviolet;
}
