/*collumns*/
* {
	box-sizing: border-box;
}

.editForm a {
	color: pink;
	text-decoration: none;
	font-weight: bold;
	border: 2px solid magenta;
}

.editForm h1, p {
	color: white;
}

.editForm input, select {
	text-align: center;
	border: 2px solid black;
	border-radius: 10px;
	font-size: 120%;
	background-color: gray;
	color: white;
}

.editForm input[type=text] {
	width: 30%;
}

.editForm input[type=number] {
	width: 15%;
}

.editForm input[type=submit]:hover {
	background-color: #4e4e4e;
}

.column {
	float: left;
	padding-left: 20px;
	width: 33.33%
}

.column h2 {
	text-align: center;
	color: #ffd700;
}

.left {
	background-color: #342b00;
}

.middle {
	background-color: #4e4e4e;
}

.right {
	background-color: #461e11;
}
/*clear variables*/
.row:after {
	content: "";
	display: table;
	clear: both;
}

/*basic setup*/
body {
	background-color: #141416;
}

.titles h1, .titles h2, .titles h3 {
	color: #2FFF00;
	margin: 0px;
	padding-left: 20px;
}

.titles a {
	text-decoration: none;
	color: green;
}

.titles a:visited {
	text-decoration: none;
	color: #2FFF00;
}

.item {
	width: 100%;
	float: right;
}

.item h1 {
	color: white;
	float: left;
	margin-left: 0;
	
}

.content {
	background-color: #252527;
	border-radius: 15px;
	width: 85%;
	float: right;
	margin-right: 20px;
	padding: 5px;
}

.content img {
	max-width: 13%;
	max-height: 66.6px;
	float: left;
	border-radius: 100px;
}

.content h2 {
	color: white;
	text-align: unset;
	margin: 0;
	margin-left: 75px;
}

.content h3 {
	color: gray;
	text-align: unset;
	margin: 0;
	margin-left: 75px;
}

.adminbar a {
	color: pink;
	text-decoration: none;
	font-weight: bold;
	border: 2px solid magenta;
}

.landing a {
	text-decoration: none;
	color: magenta;
}