body {
	font-family: 'Sailec';
	}


/* This styles the form itself */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 75%;
	margin: 0px 0 0 12.5%;
}
/* Styles for both input fields and textarea */
input[type="text"],
input[type="email"],
textarea {
    width: 100%; /* Set the width of the input boxes to 80% */
}

/* Style for the label elements */
label {
    align-self: flex-start; /* Aligns labels to the start (left) of the flex container */
    width: 80%; /* Matches the width of the input boxes */
	margin-top: 5px;
}

/* Style for the submit button */
input[type="submit"] {
    width: 20%; /* Matches the width of the input boxes */
    cursor: pointer; /* Changes the cursor to pointer when hovering over the button */
	background: #662D91;
	text-align: center;
	font-size: 30px;
	line-height: 70px;
	font-weight: bold;
	color: #fff !important;
	height: 70px;
	border: none;
	overflow: hidden;
	outline: none;
	display: inline-block;
	cursor: pointer;
	margin-top: 5px;
	margin-top:15px;
	letter-spacing:1px;
	border-radius: 15px 15px 15px 15px;
}

#name{
	min-height: 20px;
}

#email {
    min-height: 20px;
}

#message {
    min-height: 150px;
}

h1 {
    text-align: center; /* Centers the heading text */
    font-size: 2em; /* Adds some space between the heading and the form */
}

#messageConfirmation{
	text-align: center;
}


@media only screen and (max-width:767px){
	input[type="submit"] {
		width:100%;
	}
	
	
}
