/* Style Settings */

body {
	background-color: #2a5b80;
}

@font-face {
    font-family: 'w95';
    src: url(fonts/w95fa-webfont.woff2),
         url(fonts/w95fa-webfont.woff);
    font-weight: normal;
    font-style: normal;
}

#userPhoto {
	width: 220px;
	height: 220px;
	display: block;
	margin: 35px auto 1px;
	transition: all 0.15s;
}

#userName {
	font-family: w95;
	color: white;
	font-size: 3.2rem;
	font-weight: 100;
	line-height: 0;
	display: block;
	width: 100%;
	text-align: center;
	text-shadow: 0px 3px 1px #183042;
	text-decoration: none;
	margin-bottom: 90px;
}

#links {
	font-family: w95;
	max-width: 325px;
	width: auto;
	display: block;
	margin: 30px auto;
}

@media only screen and (max-width: 700px) {
	#links {
		margin-left: 7%;
		margin-right: 7%;
	}
	.night_mode {
		margin-right: 40%;
	}
}

.link {
	display: block;
	background-color: #d7d7d7;
	color: #262626;
	font-family: w95;
	text-align: center;
	margin-bottom: 40px;
	padding: 10px;
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 550;
	text-shadow: 0px 1px 1px rgb(0,0,0,0.5);
	transition: all 0.1s;
	box-shadow: 0px 3px 3px rgb(24,48,66,0.4);
}

.link:hover {
	/* background: #019489; */
	box-shadow: 0px 5px 5px rgb(24,48,66,0.3);
	transform: translateY(-1px);
}

.link:active {
	transform: translateY(1px);
	box-shadow: 0px 0px rgb(24,48,66,0.4);
}

#proker {
	max-width: 300px;
	width: auto;
	display: grid;
	margin: 27px auto;
}

.footer {
	text-align: center;
	font-size: 20px;
}

.footer a {
	text-decoration: none;
}

.media {
	-webkit-filter: drop-shadow(0px 1px 2px rgb(24,48,66,0.4));
	-webkit-filter: grayscale(40%);
	width: 100px;
	height: 100px;
	text-align: center;
	text-shadow: 0px 2px 3px rgb(0,0,0,0.2);
	color: #262626;
	margin-top: 10px
	margin-left: 10px;
	margin-right: 10px;
	transition: all 0.1s;
}

.media:hover {
	-webkit-filter: drop-shadow(0px 2px 0px rgb(24,48,66,0.7));
	-webkit-filter: grayscale(0%);
	-webkit-filter: saturate(1.5);
}

.media:active {
	transform: translateY(1px);
	box-shadow: 0px 0px #183042;
}

