body { 
	background: #333333;
	color: #ffffff;
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
}

#main {
	text-align: center;
	padding-bottom: 200px;
}


#logo {
	margin-top: -40px;
	max-width: 300px;
}

#list {
	display: flex;
	justify-content: center;
	flex-flow: row wrap;
}

.image-item {
	position: relative;
	padding: 5px;
	margin: 5px;
	background: #191919;
	border: 1px solid #444444;
	max-width: 800px;
}
.image-item img { max-width: 100%; }

.image-item-text {
	display: block;
	padding: 10px 10px;
}

.contains-text {
	background: #57BF29;
}

.input-text {
	display: block;
	width: 100%;
	padding: 5px;
	margin-top: 5px;
	margin-bottom: 6px;
	border: 1px solid #444444;
	height: 30px;
}

.button {
	display: inline-block;
	padding: 10px 15px;
	border-radius: 3px;
	background: #00779a;
	font-size: 12px;
	text-transform: uppercase;
	cursor: pointer;
}
.button:hover {
	background: #028BB3;
}

.image-item-loading, .image-item-error, .image-item-accepted {
	position: absolute;
	font-size: 50px;
	top: 20px;
	left: 20px;
}
.image-item-error {
	color: #DA0202;
}
.image-item-accepted {
	color: #57BF29;
}

