/*colors 
	light grey - #DDD1C7
	grey - #7E8987
	violet - #4B4A67
	light green - #C2CFB2
	green - #8DB580
*/

/*--text: #3E3226;
--white: #FAF8F7;
--brown: #AA5F1E;
--tan: #CE9564;
--sage: #bdcba9;
--green: #98ba8c;
*/

html {
	box-sizing: border-box;
}

body {
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
}

header {
	background: #4B4A67;

}

.bulk {
	margin-top: 50px;
}

.bulk .title {
	margin: 20px auto;
	padding: 20px;
	padding-top: 30px;
	padding-bottom: 10px;
	background: #C2CFB2;
	width: 1000px;
	justify-content: center;
}

.hero-image img {
	width: 100%;
	object-fit: cover;
	max-height: 500px;
}

.hero-text {
	position: absolute;
	top: 40px;
	right: 0;
	transition: .4s;
	background: seagreen;
	height: ;
	width: 200px;
	padding: 30px;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 60px;
}

@media (max-width: 633px) {
	
	.bulk {
		margin-top: 0;
	}

	header {
		height: 250px;
		padding: 5px;
		padding-bottom: 40px;
	}

	.hero-image {
		padding-top: 0;
	}


	.hero-text {
		position: absolute;
		top: 295px;
	}
}

.grid {
	display: grid;
	grid-template-areas: 
		"creator about about "
		"blank blank blank"
		"newsletter newsletter newsletter";
	grid-template-columns: 200px minmax(200px, 1fr) 100px;
	grid-template-rows: 470px 30px 520px;
	justify-content: center;
	margin: 0 auto;
	max-width: 1000px;
}

.item {
	padding: 10px;
}

/*creator image*/
.creator {
	grid-area: creator;
}

.creator img {
	width: 170px;
	height: 170px;
	box-shadow: 10px 10px 10px #7E8987;
}

.creator figcaption {
	background: #DDD1C7;
	padding: 15px;
	width: 150px;
	margin-right: 10px;
}

/*about text*/
.about {
	background: #DDD1C7;
	grid-area: about;
}

.about h2, .about h3, .about h4 {
	margin: 0;
}

.about h2 {
	margin-left: 10px;
}

.about h3 {
	margin-top: 20px;
}

.about h3, .about h4 {
	margin-left: 20px;
}

.about p {
	margin-left: 40px;
	margin-right: 60px;
}

/*newsletter info*/
.newsletter-i {
	grid-area: newsletter;
	text-align: center;

}

.newsletter-i h2 {
	background: #DDD1C7;
	border-radius: 10px 10px 0 0;
	padding: 10px;
}

.newsletter-i form {
	background: #C2CFB2;
	border-radius: 10px;
	width: fit-content;
	margin: 0 auto;
	padding: 20px;
	background: #C2CFB2;
}

.newsletter-i form input[type="email"] {
	border-radius: 10px;
	margin: 10px 0;
}

.newsletter-i form input[type="submit"] {
	border-radius: 10px;
}

