@import url('https://fonts.googleapis.com/css?family=Anton|Baloo|Open+Sans&display=swap');

* {
	margin: auto;
	font-family: Open Sans, sans-serif;
}


h1 {
	font-family: Anton;
	text-transform: lowercase;
	letter-spacing: 1.5px;
	font-size: 50px;
	margin: 15px auto;
	color: #ed6fe5;
}

form {
	display: flex;
	flex-direction: column;
	width: 650px;
	background-color: #adf7d8;
	border-radius: 5px;
	height: 300px;
	margin-top: 50px;
}

input[type = "text"] {
	width: 40%;
	height: 30px;
	margin-top: 0;
	font-size: 16px;
	text-align: center;
	border: 1px solid #ebebeb;
  color: darkgrey;
}

input[type = "button"] {
	width: 175px;
	height: 40px;
	font-size: 20px;
	border-radius: 5px;
	margin-bottom: 25px;
	border: 1px solid #ebebeb;
	font-family: Baloo;
	text-transform: uppercase;
	background-color: #ed6fe5;
	color: white;
	border: transparent;
	cursor: pointer;
}

.add-snack-input:disabled {
  background-color: grey;
  cursor: none;
}

textarea {
	width: 50%;
	font-size: 20px;
	margin: 10px auto;
	border-radius: 5px;
	padding-left: 10px;
	border: 1px solid #ebebeb;
  color: darkgrey;
}

section {
	margin: auto;
  /* background-color: lightgrey; */
  width: 1400px;
  height: 600px;
  display: flex;
  justify-content: center;
  flex-flow: wrap;
}
.card {
  /* width: 200px;
  height: 200px; */
  margin-top: 35px;
  margin-bottom: 0;
  border-radius: 20px;
  text-align: center;
  padding: 30px 30px 30px 30px;
}

.card h3 {
  text-transform: uppercase;
  font-size: 3.5em;
  color: white;
}

.card p {
  color: lightgrey;
  font-size: 1.5em;
}
