main {
	font-size: 23px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	flex-direction: column;
}

section {
	position: relative;
	width: 1050px;
	height: 800px;
	margin: 25px;
}

.message {
	position: absolute;
	height: 400px;
	width: 498px;
	left: 0;
	top: 30px;
}
.cloud {
	height: 400px;
	width: 498px;
}

.message div {
	position: relative;
}

.message div p {
	font-weight: normal;
	line-height: 25px;
	left: 20px;
	font-size: 25px;
	height: 300px;
	width: 420px;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	position: absolute;
}

.dog {
	position: absolute;
	right: 0;
	height: 800px;
	width: 800px;
}

button {
	background-color: #ebd4d5;
	padding: 8px 13px;
	font-size: 18px;
	border: 0;
	border-radius: 8px;
	color: #000;
}

button:hover,
a:hover {
	background-color: #f0cccd;
	color: rgb(43, 41, 41);
	cursor: pointer;
	transition: 0.2s ease-in-out;
}

a {
	text-decoration: none;
	color: #000;
}

input {
	padding: 8px 13px;
	font-size: 18px;
	border-radius: 8px;
	border: 1px solid #797979;
}

input:focus {
	outline: none;
	box-shadow: none;
}

.scale-wrapper {
	transform-origin: center top;
}

@media (max-width: 950px) {
	section {
		display: none;
	}
	form {
		width: 100vw;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}
	button,
	input {
		width: 80%;
		margin: 7.5px;
	}
}
