/* CSS Document */
.resume{
	flex-grow: 1;
}
.full{
	display: flex;
	height: 100vh;
	justify-content: center;
}
.box{
	grid-column: 2/4;
	display: grid;
	grid-template-columns: 10px 1fr;
}
.text{
	margin-left: 10px;
}
.text h3{
	font-size: 2rem;
}
.text p{
	margin-top: 0.5rem;
}
label{
	display: block;
}
input, textarea{
	display: block;
	width: 100%;
	margin-top: 1rem;
	height: 2rem;
	border: none;
	border-bottom: medium solid black;
}
textarea{
	height: 6rem;
}
input::placeholder{
	font-size: 1rem;	
}
.button{
	float: right;
}

/* Email.js */
form.emailjs-success:after,
form.emailjs-sending:after,
form.emailjs-error:after {
  margin-top: 0;
  transition: all .3s;
}
form.emailjs-sending:after {
  content: ' Sending email... ';
  background: #eee;
}
form.emailjs-success:after {
  content: 'Email sent!';
  background: #1B5E20;
  color: white;
  text-shadow: -1px -1px black;
}
form.emailjs-error:after {
  content: ' Error sending email ';
  background: #B71C1C;
  color: white;
  text-shadow: -1px -1px black;
}

@media only screen and (max-width:1200px){
	.box{
		grid-column: 1/5;
	}
}