.iphone-body {
	display: flex;
	flex-direction: column;
	align-items: center;
    transform:
    perspective(800px);
}

.chat {
	overflow: hidden;
	width: 400px;
	border: solid 0px #EEE;
    border-radius: 50px;
	display: flex;
	flex-direction: column;
	padding: 20px;
	font-size: calc(12px + 0.390625vw);
	font-weight: 400;
	line-height: calc((12px + 0.390625vw) * 1.5);
	font-family: "Helvetica Neue";
	background: #fff;
	border: 2px solid #ff8200;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.chat p {
    color: #000;
    opacity: 1;
}

@media screen and (max-width: 580px) {
	.chat {
		width: 320px;
		font-weight: 500;
	}
}

.messages {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
}

.message {
	border-radius: 20px;
	padding: 8px 15px;
	margin-top: 5px;
	margin-bottom: 5px;
	display: inline-block;
}

.yours {
	align-items: flex-start;
}

.yours .message {
	margin-right: 25%;
	background-color: #eee;
	position: relative;
	color: #000;
}

.yours .message.last:before {
	content: "";
	position: absolute;
	z-index: 0;
	bottom: 0;
	left: -7px;
	height: 20px;
	width: 20px;
	background: #eee;
	border-bottom-right-radius: 15px;
}

.yours .message.last:after {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: -10px;
	width: 10px;
	height: 20px;
	background: white;
	border-bottom-right-radius: 10px;
}

.mine {
	align-items: flex-end;
}

.mine .message {
	color: white;
	margin-left: 25%;
	background: #00a2ff;
	position: relative;
}

.mine .message.last:before {
	content: "";
	position: absolute;
	z-index: 0;
	bottom: 0;
	right: -8px;
	height: 20px;
	width: 20px;
	background: #00a2ff;
	border-bottom-left-radius: 15px;
}

.mine .message.last:after {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: -10px;
	width: 10px;
	height: 20px;
	background: white;
	border-bottom-left-radius: 10px;
}