body {
	box-sizing: border-box;
	background: #f5f5f5;
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif, futura;
}

* {
	transition: 0.3s;
}

*:focus {
	outline: none;
}

.guestbook {
	margin: 0 auto;
	ba1ckground: white;
	margin-top: 30px;
	border: 1px solid red;
	max-width: 60%;
}

.guestbook__record_empty {
	text-align: center;
	font-size: 15px;
	font-weight: bold;
	height: 200px;
	line-height: 200px;
}

.guestbook__content {
	min-height: 200px;
	max-height: 550px;
	overflow-y: auto;
	margin: 1px;
	border-bottom: 1px dotted red;
	padding-left: 20px;
	padding-right: 4px;
}

.RecordsContent {
	min-height: 200px;
	max-height: 550px;
	overflow-y: auto;
	margin: 1px;
	border-bottom: 1px dotted red;
	padding-left: 20px;
	padding-right: 4px;
}

.guestbook__comment {
	display: flex;
	margin: 0 auto;
	justify-content: space-between;
	flex-direction: column;
	min-height: 114px;
	max-width: 400px;
	padding: 2px;
	border-left: 0px dotted gray;
	border-right: 0px dotted gray;
}

.guestbook__record {
	display: flex;
	flex-direction: column;
	border-top: 1px solid red;
	padding-right: 5px;
	padding-left: 4px;
	padding: 15px 5px 15px 4px;
}

.guestbook__record-user {
	display: block;
	margin-left: 15px;
/*	font-weight: bold;*/ 
	color:red;
	font-size: 14px;
}

.guestbook__record-msg {
	display: inline-block;
	white-space: pre-line;
		font-size: 20px;
}

.guestbook__record-date {
	display: inline-flex;
	justify-content: flex-end;
		font-size: 12px;
		font-style: italic;
}
.guestbook__message {
    	background: #1d2026;
	display: inline-flex;
	min-height: 60px;
	width: 100%;
	margin-top: 5px;
	margin-bottom: 5px;
	border: 0;
	border-bottom: 1px solid lightgray;
	resize: none;
}

.guestbook__name {
    	background: #1d2026;
	display: inline-flex;
	width: 150px;
	height: 20px;
	border: 0;
	border-bottom: 1px solid gray;
}

.guestbook__button-wrapper {
	display: inline-flex;
	justify-content: end;
}

.guestbook__submit {
	display: block;
	margin: 0 auto;
	width: 95px;
	height: 25px;
	border: 1px solid black;
	font-family: futura;
	cursor: pointer;
	background: #1d2026;
}

.guestbook__submit:hover {
	background: lightgray;
}

.guestbook__record:last-child {
	padding-bottom: 0;
}

.guestbook__record:first-child {
	border-top: none;
	padding-top: 15px;
}