@CHARSET "utf-8";

main {
	background: #F9F9F9;
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main-wrap {
	width: 500px;
}

.main-wrap > div {
	width: 90%;
	padding: 50px 20px;
	background: #FFFFFF;
	box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
	margin: 0 auto;
}

.main-wrap > div > h2 {
	color: white;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
}

.main-wrap > div > ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.main-wrap > div > ul li {
	border: 1px solid #ccc;
	height: 40px;;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
}

@media screen and (max-width: 599px) {
	.main-wrap {
		width: 100%;
	}
}
