html{
	width: 100%;
	height: 100%;
}

body{
	font-family: Nunito,"Trebuchet MS",arial,sans-serif;
	font-weight: 300;
	padding: 0;
	margin: 0;
	float: top;
	height: 100%;
	overflow-y: hidden;
}

.page{
	padding: 0;

	background: #f8f8f8;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	margin-left: 20px;
	margin-top: 20px;
	border-radius: 10px;
	overflow-y: scroll;
	overflow-x: no-scroll;

	-webkit-box-shadow: 0px 0px 54px 0px rgba(0,0,0,0.58);
	-moz-box-shadow: 0px 0px 54px 0px rgba(0,0,0,0.58);
	box-shadow: 0px 0px 54px 0px rgba(0,0,0,0.3);
}

.profilePicture{
	border-radius: 50px;
	width: 100px;
	height: 100px;
}

h1{
	font-size:180%;
}

h2{
	margin-top:-17px;
	font-size:115%;
	color:#888;
}

a{
	text-decoration:none;
	color:#333;
}

#ProfileInfo
{
	text-align:center;
}

#MainFlex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	height: 100% ;
	align-items: center;
	justify-content: center;
}

#Links
{
	right:0;
	margin-left: 30px;
	padding-left:30px;	
	/* background:url(Sepperater.png) no-repeat left; */
}

.Link{
	padding-bottom:18px;
}

.LinkText{
	font-size:140%;
	padding-left:10px;
}

@media only screen and (max-width: 600px) {
	#MainFlex {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}

	#Links{
		right:0;
		margin-left: 0px !important;
		padding-left:0px !important;
		text-align: center;	
	}
}

@media only screen and (max-height: 300px) {
	.page{
		width: calc(100% - 20px) !important;
		height: calc(100% - 20px) !important;
		margin-left: 10px !important;
		margin-top: 10px !important;
	}
}

@media only screen and (max-width: 400px) {
	.page{
		width: calc(100% - 20px) !important;
		height: calc(100% - 20px) !important;
		margin-left: 10px !important;
		margin-top: 10px !important;
	}
}

a:hover{
	text-decoration:underline;
}