* {
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
		'Segoe UI Symbol';
	margin: 0;
	padding: 0;
}
body{
	width: 100%;
	display: flex;
	justify-content: center;
	background: #2c2c2c;
	color: white;
}
.container{
	margin-top: 50px;
	width:100%;
	max-width: 700px;
	/* Smallest mobile device width */
	min-width: 320px;
	padding:10px;
}
h1{
	font-weight: 500;
	font-size: 36px;
}

input[type="number"]{
	background: rgb(177, 177, 177);
	border:none;
	padding:15px;
	margin-top:10px;
	margin-bottom:10px;
	width:100%;
	max-width: 400px;
	border-radius: 2px;
	font-size: 18px;
}
::placeholder{
	color: rgb(73, 73, 73);
}
ul{
	list-style-type: none;
}
ul li{
	display: inline-block;
	background: #C4C4C4;
	margin:10px;
	margin-left:0;
	padding:10px;
	border-radius: 2px;
	color: rgb(0, 0, 0);
	font-size: 16px;
}
/* Responsiveness for mobile */
@media only screen and (max-width: 570px) {
	h1{
		font-size: 5.9vw;
	}
}
@media only screen and (max-width: 320px) {
	h1{
		font-size: 18px;
	}
	body{
		justify-content: start;
	}
}
