h2{
	text-align: center;
}

form{
	width: 50vw;
	margin: auto;
	padding: 1vw 2vw;
	border-radius: 1vw;
	background-color: rgb(59,0,42);
	font-size: 1.25vw;
	
	input{
		width: 10vw;
		font-size: 1.1vw;
		margin-top: 5px;
		margin-bottom: 1vw;
	}
	
	textarea{
		width: 20vw;
		height: 5vw;
		margin-top: 5px;
		margin-bottom: 1vw;
		max-width: 100%;
	}
	
	button{
		background-color: rgb(204,0,62);
		color: rgb(1,0,34);
		font-size: 1.25vw;
		padding: 0.25vw 0.75vw;
		border: 1px solid rgb(1,0,34);
		border-radius: 0.25vw;
		
		&:hover{
			background-color: rgb(117,0,50);
			color: rgb(1,0,34);
			border-color: rgb(1,0,34);
		}
	}
}