#modal {
	display: none;
	background-color: #fff;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

#close-button {
	position: fixed;
	top: 30px;
	right: 30px;
	font-size: 30px;
}

form {
	position: absolute;
	width: 500px;
	max-width: 100%;
	max-height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.form-title {
	display: block;
	margin-bottom: 50px;
	font-weight: bold;
	font-size: 50px;
	color: rgb(60, 60, 60);
}

input, textarea {
	width: 90%;
	margin-bottom: 30px;
	border: none;
	font-size: 20px;
	font-weight: bold;
	color: rgb(80, 80, 80);
	background: transparent;
	padding: 0;
	outline: 0;
}

textarea {
	overflow: auto;
	resize: vertical;
	min-height: 150px;
}

button {
	border: none;
	background: transparent;
	font-weight: bold;
	font-size: 25px;
	color: rgb(60, 60, 60);
	cursor: pointer;
	outline: 0;
}

button:hover {
	text-decoration-line: underline;
}
