body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	min-height: 100vh;
	background-color: #f3f4f6;
}
ul {
	list-style-type: none; /* Removes bullet points */
	padding-left: 0;
}

li {
	margin-bottom: 8px; /* Adds spacing between feedback items */
}
h1 {
	color: #199de0;
}
.centered{
	align-items: center;
	display: flex;
}
.container {
	padding: 30px;
	background-color: #fff;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}
.feedback-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px;
}

.column {
	flex: 0 0 calc(50% - 20px);
	box-sizing: border-box;
	padding: 20px;
	border: 1px solid #e0e0e0;
	background-color: #f9f9f9;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

