main {
	background: var(--color-eggshell);
	width: 100%;
	text-align: center;
}

.container {
	margin-bottom: 25px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.countries-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	max-width: 800px;
}

.countries-list li {
	width: 100%;
	box-sizing: border-box;
	text-align: left;
	position: relative;
	padding: 20px 20px 0;
}

.countries-list li:nth-child(3n)::after {
	content: none;
}

.flag-icon {
	margin-right: 10px;
	display: inline-block;
	width: 24px !important;
	height: 18px;
	background-size: cover;
}

@media screen and (min-width: 720px) {
	.name {
		width: min-content;
	}

	.countries-list li {
		width: calc(33.333% - 20px);
		padding: 20px;
	}

	.countries-list {
		gap: 30px;
	}

	.countries-list li {
		padding-right: 20px;
	}

	.countries-list li::after {
		content: "";
		position: absolute;
		right: 0;
		top: 0;
		height: 100%;
		width: 1px;
		background-color: #ccc;
	}
}
