@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
body {
	background: #131313;
	color: #fff;
	font-family: 'Roboto', sans-serif;
}
html, body {
    height: 100%;
    margin: 0;
	flex-direction: column;
}
.topnav {
	overflow: hidden;
	background-color: #333;
}
.topnav a {
	float: left;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}
.topnav a:hover {
	background-color: #ddd;
	color: black;
}
.topnav a:first-child {
	background-color: #04AA6D;
	color: white;
}
.topnav a:last-child {
	float: right;
}
.container {
	display: flex;
	margin-top: 10px;
	height: 90%;
}
.left,
.right {
	display: grid;
	width: 550px;
	min-width: 350px;
	margin: 0 auto;
	overflow: hidden;
}
.spotify {
	width: 70%;
	margin: auto;
}
.profile, .gallery {
	background: #252525;
	height: 100%;
	width: 70%;
	margin: 0 auto;
	border-radius: 10px;
	overflow: auto;
}
.profileheader, .galleryheader {
	background-color: #353535;
	top: 0;
	height: 50px;
	padding: 10px;
	margin-bottom: 20px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.profilepicture {
	background-color: rgba(0,0,0,.3);
	padding: 20px 50px 20px 50px;
	border-radius: 10px;
	width: 50%;
	margin: 0 auto;
}
.profilepicture:hover {
	transform: scale(1.1)
}
.profilepicture #icon img {
	border-radius: 50%;
	border: 5px solid #8338ec;
	margin: 0 auto;
}
.profilepicture #icon h1 {
	text-decoration: none;
	color: #fff;
}
.profilecontent {
	padding: 10px;
}
#icon {
	text-decoration: none;
}
.gallery {
	overflow: hidden;
}
.gallery .images {
    padding: 20px;
    margin-bottom: 20px;
}
.gallery .images img {
	height: 100px;
	width: 100px;
	object-fit: cover;
	border-radius: 5px;
}
.gallery .images img:hover {
	transform: scale(1.3);
	cursor: pointer;
}
.main {
	margin: 0 auto;
	background: #252525;
	border-radius: 10px;
	width: 800px;
	min-height: 600px;
	overflow: hidden;
}
.logo {
	background-color: #303030;
	padding: 20px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	margin-bottom: 20px;
	box-shadow: 0 5px 5px rgba(0,0,0,.1);
}
.logo h2 {
	margin: 0 auto;
	text-align: center;
	font-size: 90px;
}
.inner {
	position: relative;
	border-radius: 10px;
	padding-top: 10px;
	padding-bottom: 80px;
	max-width: 600px;
	margin: auto;
}
.inner h1 {
	text-align: center;
	margin: 0;
	font-size: 60px;
	text-shadow: 0 10px 10px rgba(0,0,0,.5);
}
.divider {
	border-bottom: solid 1px rgba(255,255,255,.5);
	height: 1px;
	width: 300px;
	margin: 0 auto;
	margin-top: 10px;
	margin-bottom: 10px;
}
.links {
	text-align: center;
}
.links a[title="bluesky"] {
	background: url(https://assets.vogue.com/photos/64a55aa8e2c7ef3b61500f82/1:1/w_480,h_480,c_limit/unnamed.png) no-repeat center/100%;
}
.links a[title="roblox"] {
	background: url(https://prod.docsiteassets.roblox.com/assets/avatar/character-customization/Avatar-Banner.jpg) no-repeat center/100%;
}
.links a[title="vrchat"] {
	background: url(gallery/img5.png) no-repeat center/100%;
}
.links a[title="steam"] {
	background: url(https://images5.alphacoders.com/695/695356.jpg) no-repeat center/100%;
}
.links a[title="spotify"] {
	background: #1bd473!important;
}
.links a[title="discord"] {
	background: url(https://e0.pxfuel.com/wallpapers/487/916/desktop-wallpaper-the-best-discord-themes-and-plugins-discord-gaming.jpg) no-repeat center/100%;
}
.links a {
	background-color: rgba(0,0,0,.5);
	margin: auto;
	margin-top: 5px;
	width: 300px;
	border-radius: 5px;
	color: #ddd;
	font-size: 46px;
	display: block;
	text-decoration: none;
	text-shadow: 0 0 10px #000;
	font-weight: bold;
	border: 2px solid black;
	transition: ease-in-out .1s;
	box-shadow: inset 0 0 100px rgba(0,0,0,.3);
}
.links a:hover {
	color: #ECF20C;
	background-color: #252525;
	border: 2px solid #ECF20C;
	transform: scale(1.05);
	text-shadow: 0 0 10px #ECF20C;
	transition: ease-in-out .1s;
	box-shadow: inset 0 0 100px rgba(0,0,0,1);
}
.links a:active {
	transform: scale(.95);
}
.links a:hover:before {
	content: "";
	top: -10px;
	position: absolute;
	background: url('../assets/images/arrow.png') no-repeat center/100%;
	width: 100px;
	height: 80px;
	margin-left: -100px;
	animation-name: left-right;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}
.links a:hover:after {
	content: "";
	top: -10px;
	transform: rotate(180deg);
	position: absolute;
	background: url('../assets/images/arrow.png') no-repeat center/100%;
	width: 100px;
	height: 80px;
	animation-name: right-left;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}
@keyframes left-right {
	0% {margin-left: -100px;}
	50% {margin-left: -150px;}
	100% {margin-left: -100px;}
}
@keyframes right-left {
	0% {margin-left: 0;}
	50% {margin-left: 50px;}
	100% {margin-left: 0;}
}
.footer {
	display: inline-block;
	margin-top: 50px;
	padding-top: 10px;
	background: #333;
	width: 100%;
	padding-bottom: 20px;
	text-align: center;
}
.footer p,
.footer h1 {
	margin: 0;
}
@media only screen and (max-width: 1515px) {
	.container {
		display: block;
		
	}
	.left, .right {
		display: flex;
		width: 800px;
	}
	.profile {
		margin-right: 10px;
	}
	.gallery {
		width: unset;
		margin-bottom: 200px;
	}
	.spotify iframe {
		height: 440px;
	}
	.main {
		margin-top: 50px;
		margin-bottom: 50px;
	}
	.footer {
		position: fixed;
		bottom: 0;
		left: 0;
	}
}
@media only screen and (max-height: 680px) {
	.footer {
		display: none;
	}
}

#boxbackground {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
	backdrop-filter: blur(5px);
	top: 0;
	left: 0;
	z-index: 9998;
}
#box {
	background-color: #252525;
	position: fixed;
	width: 500px;
	height: 500px;
	border-radius: 10px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
}
#boxheader {
	background: #353535;
	width: 100%;
	height: 80px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
#boxheader h1 {
	color: #fff;
	font-size: 36px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	margin: 0;
}
#box p {
	color: #fff;
	font-size: 24px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	margin: 0;
	display: grid;
}
#spooky {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(https://graveplotpodcast.com/wp-content/uploads/2018/07/creepy-door-creepy-lock-door-creepy-doorbell-pic-e1532880189493.jpg) no-repeat center/cover;
	opacity: 0;
	z-index: 9998;
}
#spookystatic {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(https://i.stack.imgur.com/sIIwU.gif) center;
	opacity: 0;
	box-shadow: inset 0 0 500px black;
	z-index: 9999;
}