@charset "utf-8";
/* CSS Document */

.d1s1{
	width: 1300px;

	margin: 50px auto;
}
.d1s1o1{
	font-size: 38px;
	color: #2e09aa;
	text-align: center;
}
.d1s1o2{
	font-size: 28px;
	color: #2e09aa;
	margin-top: 10px;
	text-align: center;
}
.d1s2{
	margin-top: 20px;
	width: 100%;
	height: 800px;
	border: 1px solid black;
}


.div1{
	margin: 0 auto;
	width: 1000px;
	height: 350px;
	margin-top: 50px;
	border: 1px solid #000000;
}
.div2{
	margin: 10px 50px;
}

#submitButton{
	background-color: orange;
	width: 200px;
	margin-left: 350px;
}
.div3{
	margin: 10px 50px;
}


.messages {
	margin-top: 100px;
	width: 1000px;
	padding: 50px 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;background: linear-gradient(
		to right bottom,
		rgba(255,255,255,.6),
		rgba(255,255,255,.3),
		rgba(255,255,255,.2)
	);
	background-color: rgba(255, 255, 255, 0.266);
	border-radius: 40px;
	box-shadow: 0 10px 50px #00000019;
	margin: 0 auto;
	background-color: aliceblue;
	margin-bottom: 100px;
	color: #fff;
    box-sizing: border-box;
}

.form {
	display: flex;
	justify-content: center;
	position: relative;
	flex-direction: column;
	width: 100%;
	padding-bottom: 90px;
}

input:focus,
textarea:focus {
	outline: none;
}

input,
textarea {
	border: none;
	color: #000;
	margin-bottom: 40px;
	font: 500 16px '';
	border-radius: 10px;
	padding: 10px;
	padding-left: 30px;
	background-color: rgba(211, 211, 211, 0.5);
}

#username {
	height: 30px;
}

#message {
	height: 200px;
}


#submitBtn {
	position: absolute;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(90deg, #e0c3fc 0%, #8ec5fc 100%);
	border: none;
	font-size: 18px;
	letter-spacing: 5px;
	width: 100px;
	height: 40px;
	border-radius: 50PX;
	margin-bottom: 50px;
}

#messageBoard {
	width: 100%;
	text-align: left;
}

@keyframes messageFadeIn {
	to {
		opacity: 1;
	}
}

.message {
	width: 100%;
	margin: 10px;
	padding: 10px;
	opacity: 0;
	animation: messageFadeIn 0.5s ease forwards;
	background-image: linear-gradient(90deg, #8ec5fc 0%, #e0c3fc 100%);
	background-color: #fff;
	margin: 70px 0;
	border-radius: 10px;
	box-shadow: 0 10px 20px #00000026;
}

.message-info {
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 20px;
	position: relative;
}

.info {
	transform: translateY(-30px);
}

.info img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 2px #fff solid;
}

strong {
	position: absolute;
	width: 800px;
	letter-spacing: 3px;
	top: 45px;
	left: 100px;
}

.message-info span {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 16px;
}

.content {
	font-size: 20px;
	padding: 0 70px;
	margin-bottom: 30px;
	width: 85%;
	margin-top: 0;
	letter-spacing: 2px;
}