body{
	margin: 0px;
	padding: 8px;
	min-height: 98.3vh;
	background-color: #314f30;
	background: linear-gradient(180deg, rgba(66,55,55,1) 0%, rgba(13,11,11,1) 100%);
}

p{
	color: #84aa89;
	font-family: sans-serif;
	margin: 0px;
}

a{
	font-family: sans-serif;
}
a:link {
	color: #c1d7c2;
}
a:visited {
	color: #c1d7c2;
}
a:hover {
	color: limegreen;
}
a:active {
	color: greenyellow;
}

h2{
	color: white;
	font-family: consolas;
}

h3{
	color: #e1eee3;
	font-family: consolas;
}

#mainListTupper{
	background-color: #314f30;
	padding: 5px 10px;
}

.categoryTupper{
	margin: 15px 0px;
	background-color: #283f27;
	padding: 4px 4px 0px 4px;
}

.entryTupper{
	margin-bottom: 2px;
	display: flex;
	/*flex-wrap: wrap;*/
	border-bottom: dotted;
	border-color: #314f30;
	justify-content: space-between;
}

.entryTupper:nth-child(even) {
    background-color: #223521;
}

.urlTupper{
	width: 400px;
	word-wrap: break-word;
}

.titleTupper{
	width: 280px;
}

.descriptionTupper{
	width: 500px;
}
.descriptionTupper p{
	color: #4f8b64 !important;
}

@media screen and (max-width: 1135px) {
	.entryTupper{
		flex-direction: column;
	}
	.urlTupper{
		max-width: -webkit-fill-available;
		max-width: -moz-available
	}
	.titleTupper{
		max-width: -webkit-fill-available;
		max-width: -moz-available
	}
	.descriptionTupper{
		max-width: -webkit-fill-available;
		max-width: -moz-available
	}
}

.fakeLink{
	color: #c1d7c2;
	cursor: pointer;
}
.fakeLink:hover {
	color: limegreen;
}