@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

body {
	background-color: rgb(244, 242, 242);
}

main {
	font-family: Arial;
    text-align: center;
    min-height: 85vh;
}

h1 {
	text-align: center;
	font-family: "Libre Baskerville", serif;
}

form {
	width: 340px;
	margin: 0 auto;
	text-align: center;
}
label {
	display: block;
}

input[type="text"],
textarea {
	display: block;
	margin: 0 auto;
	width: 80%;
	font-family: Arial, sans-serif;
	line-height: 1.5;
	padding: 10px;
}

.form-buttons{
	font-family: "Libre Baskerville", serif;
	font-size: large;
	border-radius: 5px;
	min-width: 100px;
	height: 37px;
	background-color: #fcee85;
	color: #000000;
	border: none;
	margin: 10px 10px 10px 10px;
}

.form-buttons:hover {
	transform: scale(1.1);
	transition: transform .25s ease;
    }

input[type="submit"]:hover {
	transform: scale(1.1);
	transition: transform .25s ease;
}

.fillout {
	display: flex;
	justify-content: center;
}

#feed {
	text-align: center;
}

ul {
	list-style-type: none;
    padding-left: 0;
    margin: 0 auto;
}

.card {
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgb(206, 206, 206);
  padding: 20px;
  margin: 10px;
  text-align: center;
  display: inline-block;
  background-color: white;
}

.content-card {
  overflow-wrap: break-word; 
  width: 75%;
  min-height: 100vh;
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgb(206, 206, 206);
  padding: 20px;
  text-align: center;
  display: inline-block;
  background-color: white;
}

footer {
	text-align: center;
	font-family: arial;
}

input, textarea, select {
  font-size: 16px;
}