body {
	margin: 0;
	padding: 2em 0;
	font-family: 'Open Sans', sans-serif;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;

	background-color: #e6ecf0;

	font-size: 13pt;
	line-height: 15pt;
}

.status {
	width: 600px;
	margin: 20px auto;
	border-radius: 3px;
	background-color: white;
}

.logo {
	height: 75px;
	border-radius: 50%;
	padding: 5px;
}

.tweet-content {
	display: flex;
	padding: 10px;
}

.tweet {
	display: flex;
	flex-direction: column;
	margin-left: 10px;
}

.head {
	display: flex;
}

.head a {
	margin-right: 5px;
}

.head .login {
	margin-right: 7px;
}

.head .data-time {
	margin-left: 7px;
}


a {
	text-decoration: none;
	color: black;
	font-weight: bold;
}

span {
	color: grey;
}

.like span {
	cursor: pointer;
	font-size: 1.2em;
}

.like .heart {
	color: #e0245e;
}

.comment-bar {
	display: flex;
	flex-direction: column;
	background-color: #f5f8fa;
	padding: 10px;
	border-top: 1px solid #e6ecf0;
}

textarea {
	max-width: calc(100% - 6px);
	min-width: calc(100% - 6px);
	border: 1px solid #1DA1F2;
	border-radius: 2px;
	padding: 2px;
}

.characters-remaining {
	font-size: 12px;
}

::placeholder {
	color: grey;
}