body {
	font-family: sans-serif;
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
header{
	padding: 1em 2em;
	background: #808fdf;
}
main {
	flex: 1;
}

section {
	margin: 2em;
}

h1, h2 {
	margin: 10px 0;
}

table {
	border-collapse: collapse;
	width: 100%;
}

hr {
	margin: 3em 0;
}

footer {
	padding: 10px;
	text-align: center;
	background-color: #808fdf;
}

.feed__details {
	width: 12em;
	display: inline-flex;
	flex-direction: column;
	padding: 10px;
	margin: 10px;
	border-radius: 10px;
	background: #9881dc;
}

.feed__details--delete {
	& > form {
		margin: 0;
	}
}

.feed__details--title {
	height: 6em;
}

.feed__details--description {
	margin-bottom: 10px;
}

.success {
	color: #5997d5;
	padding: 10px;
	border: 1px solid #5997d5;
	border-radius: 5px;
}

.error {
	color: #5997d5;
	padding: 10px;
	border: 1px solid #5997d5;
	border-radius: 5px;
}

.btn {
	padding: 5px 10px;
	border: none;
	background-color: #43aab4;
	cursor: pointer;
	border-radius: 5px;
	text-decoration: none;
	color: black;

	& > i {
		font-size: 1.3em;
	}
}

.btn:hover {
	background-color: #cccccc;
	color: black;
}

.feed__details--btn {
	background-color: white;
}


label {
	display: block;
	margin-bottom: 5px;
}

input[type="text"] {
	padding: 5px;
	border: 2px solid #43aab4;
	border-radius: 5px;
	width: 60%;
}

#feed__items--header {
	display: inline-flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.feed__item {
	width: 22em;
	display: inline-flex;
	flex-direction: column;
	padding: 10px;
	margin: 10px;
	border-radius: 10px;
	background: #b97ccd;
}

.feed__item--btn {
	background-color: white;
	text-align: center;
}
