@import url('https://fonts.googleapis.com/css2?family=Kolker+Brush&display=swap');

*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a:link,
a:visited,
a:active {
	color:#FFF;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	color: #000;
}

body {
	font-family: "Comic Sans MS";
  	background-color: black;
	color: #5f2593;
	font-size: 62.5%;	
}

p {
	line-height: 1.2;
	font-size: 1.2rem;
	text-align: justify;
	padding: 0.4rem 0.8rem;
	color: #5f2593;
}

.home p {
	font-size: 1.6rem;
	text-align: justify;
	padding: 0.8rem 1.6rem;
	line-height: inherit;
	color: white;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}

.link {
	font-size: 1.2rem;
	color: #5f2593;
}

.gridspantwo {
	grid-column: span 2;
}

h1,
h2,
h3 {
	text-align: center;
	margin-bottom: 0.8rem;
}

h1 {
	font-size: 3.2rem;
	font-weight: 600;
}

h2 {
	font-size: 2rem;
	font-weight: 500;
}

h3 {
	font-weight: 400;
	font-size: 1.6rem;
}

.container {
	max-width: 1200px;
	width: 100%;
	margin: 2rem auto;
	border: none;
	background-color: black;
}

label {
	color: #5f2593;
}

/****
MAIN
****/

.home {
	max-height: 800px;
	height: 800px;
	background: linear-gradient(
	rgba(240, 240, 240, 0.144),
	rgba(255, 255, 255, 0.336)
	),
	url("../images/background.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 10px;
	padding-top: 10px;
}

.img_home {
	display: block;
	margin-top: 10px;
	border-radius: 10px;
	margin: 0 auto;
}

.title {
	font-family: "Kolker Brush";
	text-align: center;
	font-size: 9.6rem;
	color: white;
}

.creations-background {
	max-height: 1500px;
	height: 100%;
	background-color: #D7BDEE;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 10px;
	padding-top: 10px;	
}

.creations {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	justify-items: center;
  	align-items: center;
  	font-size: 1.2rem;
	margin: 20px 10px;
}

.creations a:link,
.creations a:visited,
.creations a:active,
.footer a:link,
.footer a:visited,
.footer a:active {
	color: #5f2593;
	text-decoration: none;
}

.creations a:hover,
.footer a:hover {
	color: #FFF;
	text-decoration: none;
}

.creations_nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-row-gap: 10px;
	grid-column-gap: 10px;
	font-size: 1.2rem;
	margin: 10px;
	color: #5f2593;
}

.nav_bar {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	align-content: center;
	font-size: 1.2rem;
	margin: 10px;
}

.footer {
	display: flex;
  	align-content: center;
  	font-size: 1.2rem;
  	justify-content: space-around;
  	margin: 20px 10px;
	
}