article{
	padding:10px;
	background-color: white;
}
article ul{
	display: none;
	color: hsl(200,100%,60%);
}
article .one{
	display: inline-block;
}
article ul li{
	color: hsl(0,0%,40%);
	padding: 10px;
	list-style: none;
}
article h1{
	margin-bottom: 10px;
	padding: 5px;
	border-radius: 5px;
	margin-top: 20px;
	text-transform: uppercase;
	font-weight: normal;
	color: hsl(0,0%,30%);
}
article h1::before{
	content: "+ ";
	color: hsl(260,100%,10%);
	font-weight: bold;
}
.start::before{
content: '';
}
.display::before{
	content: "- ";
	color: hsl(260,100%,10%);
	font-weight: bold;
}
@media(min-width: 1000px){
	article{
		width: 65%;
		margin: auto;
		margin-top: 15px;
		margin-bottom: 30px;
		padding: 30px;
		}
}
