@charset "utf-8";
/* CSS Document */

* {
	margin: 0px;
}

html {
	scroll-behavior: smooth;
}

body {
	width: 100%;
	background-color: black;
	font-family: Gill Sans, Gill Sans MT, Myriad Pro, DejaVu Sans Condensed, Helvetica, Arial," sans-serif";
}

body::-webkit-scrollbar {
	width: 8px;
}

body::-webkit-scrollbar-track {
	background-color: black;
}

body::-webkit-scrollbar-thumb {
	background-color: #000C27;
}

body::-webkit-scrollbar-thumb:hover {
	background-color: #D97000;
}

#header {
	height: 120px;
	width: 90%;
	position: relative;
	margin-top: 0px;
	margin-left: 5%;
	background-color: black;
	border-bottom: 3px solid white;
	border-radius: 100px;
}

#header h1 {
	font-size: 4vw;
	color: white;
	text-align: center;
	margin-top: 20px;
}

#header h2 {
	font-size: 3vw;
	color: #DF9443;
	text-align: center;
	margin-top: 15px;
}

#navbar {
	position: relative;
	display: block;
	width: 90%;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	background-color: black;
}

.navSections {
	width: 100%;
	height: 50px;
	position: relative;
	float: left;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-evenly;
}

#navSection2 {
	width: 80%;
	height: 30px;
	margin-left: 10%;
}

.nav1 {
	position: relative;
	margin-top: 10px;
	align-self: center;
}

.nav1 a {
	width: auto;
	height: 30px;
	background-color: transparent;
	color: white;
	font-size: min(4vw, 19px);
	text-decoration: none;
}

.nav2 {
	position: relative;
	margin-top: 10px;
	align-self: center;
}

.nav2 a {
	width: 70px;
	height: auto;
	background-color: transparent;
	color: white;
	font-size: min(3.5vw, 16px);
	text-decoration: none;
}

#links a {
	text-decoration: underline;
}

/************************************/

#main {
	width: 100%;
	height: 1000px;
	/*
	background: radial-gradient(ellipse at top right, #111111, transparent);
	background: radial-gradient(ellipse at bottom left, #232323, transparent);
	*/
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: center;
}

.link {
	display: block;
	position: relative;
	width: 80%;
	height: 60px;
	margin-top: 40px;
	margin-bottom: 20px;
	border-radius: 4px;
}

.link h3 {
	position: absolute;
	top: -8px;
	left: 10%;
	color: white;
	text-align: center;
	padding-top: 24px;
	font-size: 20px;
}

.link i {
	position: absolute;
	font-size: 30px;
	top: 25%;
	left: 78%;
	color: white;
}

.link a {
	z-index: 2;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: transparent;
}

.link::before {
	width: 98%;
	height: 84%;
	position: absolute;
	left: 1%;
	top: 8%;
	content: "";
	background-color: black;
	border-radius: 2px;
}

.link:active:before {
	background-color: transparent;
	transition: 0.1s;
}

/* home */
#link1 {
	background-image: linear-gradient(-110deg, rgba(30,30,60,1.0), rgba(20,20,20,1.0));
}

/* spotify */
#link2 {
	background-image: linear-gradient(-110deg, rgba(30,215,96,1.0), rgba(22,30,20,1.0));
}

/* instagram */
#link3 {
	background-image: linear-gradient(-110deg, rgba(79,91,213,1.0), rgba(150,47,191,1.0), rgba(214,41,118,1.0), rgba(250,126,30,1.0), rgba(254,218,117,1.0));
}

/* apple music */
#link4 {
	background-image: linear-gradient(-110deg, rgba(255,78,107,1.0), rgba(255,4,54,1.0));
}

/* etsy */
#link5 {
	background-image: linear-gradient(-110deg, rgba(255,179,72,1.0), rgba(235,109,32,1.0));
}

/* youtube */
#link6 {
	background-image: linear-gradient(-110deg, rgba(255,30,30,1.0), rgba(30,10,10,1.0));
}

/* twitch */
#link7 {
	background-image: linear-gradient(-110deg, rgba(200,165,255,1.0), rgba(100,65,164,1.0));
}

/* github */
#link8 {
	background-image: linear-gradient(-110deg, rgba(158,214,229,1.0), rgba(88,144,159,1.0));
}

/************************************/

#bottom {
	position: relative;
	float: left;
	display: flex;
	width: 100%;
	height: 200px;
	flex-flow: row nowrap;
	justify-content: space-around;
	margin-top: 30px;
	background-color: #df9443;
}

.navBottom {
	display: block;
	flex-basis: auto;
	width: auto;
	margin-top: 60px;
}

.navBottom a {
	font-size: 24px;
	color: white;
	text-decoration: none;
}

#linksBottom a {
	text-decoration: underline;
}

#footer {
	width: 100%;
	height: 20px;
	z-index: 1;
	position: fixed;
	background-color: rgba(0,0,0,0.60);
	bottom: 0px;
	left: 0px;
	padding-top: 5px;
	text-align: center;
	color: #CFCFCF;
	font-size: 14px;
}
