*{
	box-sixing:border-box;
}

body{
	font-family: 'Indie Flower' ;
	background-color: var(--ltblue);
	background-image: linear-gradient(to top, #BAF2BB, #96E4Df);
	margin: 0px;
	background-repeat: no-repeat;
	background-attachment: fixed;
	display:grid;
	grid-template-columns:100%;
	grid-template-rows:10% 90%; 
	padding: 5px;
	grid-template-areas:
	"header"
	"form";
	justify-items:center;
}

h1{
	grid-area:header;
	padding:10px;
}

form{
	grid-area:form;
	justify-contents:center;
}
div{
	padding:10px;
	margin: 10px;
	background-color: var(--pink);
	box-shadow: 3px 3px;
	border-radius:15px;
}

input[type=text]{
	width: 95%;
	padding: 5px;
	margin:8px 0px;
}
#highlights{
	width: 95%;
	padding:5px;
	margin:8px 0px;
	resize : none;
}
#files{
	padding:5px;
	margin:8px 0px;
}
input[type=submit]{
	background-color: lightblue;
	padding:12px 20px;
	border:none;
	border-radius:4px;
}
