.user-name {
	display: block;
}

.container {
	width: 100%;
}

.error-list {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	margin: 25px auto 30px;
}
.error-list li {
	max-width: fit-content;
}
.error-item {
	width: 100%;
	padding: 6px 15px;
	text-align: center;
	color: oklch(0.372 0.044 257.287);
	font-weight: 600;
	cursor: pointer;
	font-size: 28px;
	line-height: 28px;
	background-color: oklch(0.968 0.007 247.896);
	box-sizing: border-box;
	border: 1px solid oklch(0.869 0.022 252.894);
	border-radius: 4px;
	transition: all 0.25s ease-in-out;
}

.error-item:hover {
	-webkit-box-shadow: 0px 0px 3px 1px rgba(34, 60, 80, 0.15);
	-moz-box-shadow: 0px 0px 3px 1px rgba(34, 60, 80, 0.15);
	box-shadow: 0px 0px 3px 1px rgba(34, 60, 80, 0.15);
}

@media (min-width: 800px) {
	.container {
		width: auto;
	}
	.error-list {
		flex-direction: row;
		justify-content: space-around;
	}
	.error-list li {
		width: 20%;
	}
}

