* {
	box-sizing: border-box;
	-webkit-user-select: none;
	user-select: none;
}
body {
	width: 100vw;
	margin: 0;
	color: #f0f0f0;
	background-color: #161616;
	font-family: 'Noto Sans', 'Verdana', sans-serif;
}
#main-container {
	width: 96vw;
	max-width: 600px;
	margin: 15px auto;
	padding: 20px;
	border-radius: 10px;
	background-color: #202022;
}
#logo {
	display: block;
	width: 60%;
	margin: 5px auto;
	margin-bottom: 25px;
}
#list-name {
	display: block;
	font-size: 28px;
	background-color: #202022;
	color: #f0f0f0;
	border: none;
	text-decoration: none;
	margin: 10px 0;
	margin-bottom: 25px;
	width: 100%;
	text-align: center;
	user-select: text;
}
#add-button {
	background-color: #404042;
	width: 100%;
	padding: 8px;
	border-radius: 8px;
}
#add-button-plus {
	font-size: 36px;
	margin: auto;
	text-align: center;
	font-weight: bold;
}
#warning-div {
	background-color: #a01010;
	width: 100%;
	margin: 0;
	padding: 10px;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	transition: 0.5s;
}
#share-buttons {
	text-align: center;
}
.share-button {
	display: inline-block;
	font-size: 16px;
	background-color: #323234;
	padding: 8px;
	border-radius: 4px;
	margin: 4px;
	margin-top: 24px;
}
.list-item {
	background-color: #303032;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 8px;
	border-radius: 8px;
	margin-bottom: 12px;
}
.item-placement {
	font-size: 28px;
	margin-left: 12px;
	width: 20%;
}
.item-name {
	font-size: 24px;
	margin-right: 12px;
}
.item-buttons {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.item-btn {
	background-color: #2d2d2f;
	padding: 4px 8px;
	margin: 0 4px;
	border-radius: 4px;
	font-size: 32px;
	transition: 0.1s;
}
.item-btn:hover {
	background-color: #2b2b2d;
}
.delete-bg {
	background-color: #502d2d;
}
.delete-bg:hover {
	background-color: #582b2b;
}

@media screen and (min-width: 900px) {
	#main-container {
		margin-top: 25px;
	}
	#logo {
		width: 50%;
	}
	#warning-div {
		font-size: 20px;
	}
	#list-name {
		font-size: 32px;
	}
	.item-placement {
		font-size: 36px;
	}
	.item-name {
		font-size: 32px;
	}
}
