/* Style Settings */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');
:root {
	--font: 'Montserrat', sans-serif;
}

body {
	background-color: #a2ffff;
}

#userPhoto {
	width: 90px;
	height: 99px;
	display: block;
	margin: 35px auto 20px;
	-webkit-box-shadow: 0px 6px 0px 0px #a2ffff;
	-moz-box-shadow: 0px 6px 0px 0px #a2ffff;
	box-shadow: 0px 6px 0px 0px #a2ffff;
	transition: all 0.15s;
}

#userPhoto:hover {
	box-shadow: 0px 8px #a2ffff;
	transform: translateY(-2px);
}

#userPhoto:active {
	box-shadow: 0px 0px black;
	transform: translateY(6px);
}

#userName {
	color: #3e32d8;
	font-size: 1cm;
	font-weight: 600;
	line-height: 1.25;
	display: block;
	font-family: var(--font);
	width: 100%;
	text-align: center;
	text-decoration: none;
}

#links {
	max-width: 675px;
	width: auto;
	display: block;
	margin: 27px auto;
}

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

.link {
	display: block;
	background-color: #624bf5;
	color: #fff;
	font-family: var(--font);
	text-align: center;
	margin-bottom: 20px;
	padding: 17px;
	text-decoration: none;
	font-size: 1rem;
	font-weight: bold;
	transition: all 0.15s;
	box-shadow: 0px 6px #3e32d8;
}

.link:hover {
	/* background: #019489; */
	box-shadow: 0px 8px #3e32d8;
	transform: translateY(-2px);
}

.link:active {
	transform: translateY(6px);
	box-shadow: 0px 0px #3e32d8;
}

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

.footer {
	text-align: center;
	font-size: 1.3rem;
}

.footer a {
	text-decoration: none;
}

.media {
	background: #9f7dff;
	width: 38px;
	height: 38px;
	text-align: center;
	color: white;
	margin-bottom: 40px;
	box-shadow: 0px 6px #8064ff;
	transition: all 0.15s;
}

.media:hover {
	box-shadow: 0px 8px #8064ff;
	transform: translateY(-2px);
}

.media:active {
	transform: translateY(6px);
	box-shadow: 0px 0px #8064ff;
}

