body
{
	display: flex;
	align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-content: center;
	background-color: #FFF;
	padding-top:1%;
	color: #FFF;
	
}

a {
	color: #E21212;
	text-decoration: none;
}
a:hover {
	color: #FFF;
	text-decoration: underline;
}
.main-content
{
	width: 80%;
    padding-top: 50px;
    padding-bottom: 5%;
    padding-left: 30%;
    padding-right: 30%;
    margin: 0 auto;
    background-color: #202020;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.head-image
{
	text-align: center;
}
.taskbar
{
	width: 80%;
	padding-left: 30%;
	padding-right: 30%;
	
	line-height: 40px;
	
	background-color: #FF0000;
	color: #FFF;
	
	/* Prevents the 100% + padding thing */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
}

.taskbar-item
{
	/* Makes the background of the button extend the entire taskbar. Dunno why it needs 11px */
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 11px;
	
	height: auto;
	background-color: #FF0000;
}

.taskbar-item a 
{
	color: #FFF;
	text-decoration: none;
}
.taskbar-item a:hover
{
	text-decoration: underline;
}