@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: 12px;
}

body::-webkit-scrollbar-track {
	background-color: black;
}

body::-webkit-scrollbar-thumb {
	background-color: #000C27;
}

body::-webkit-scrollbar-thumb:hover {
	background-color: #D97000;
}

#header {
	height: 150px;
	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: 45px;
	color: white;
	text-align: center;
	margin-top: 20px;
}

@supports (-webkit-text-stroke: 2px white) {
	#header h1 {
		-webkit-text-fill-color: transparent;
		-webkit-text-stroke: 2px white;
	}
}

#header h2 {
	font-size: 30px;
	color: #DF9443;
	text-align: center;
	margin-top: 10px;
}

#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;
	margin-left: 15px;
	margin-right: 15px;
	align-self: center;
}

.nav1 a {
	width: 70px;
	height: 30px;
	background-color: transparent;
	color: white;
	font-size: 22px;
	text-decoration: none;
}

.nav1 a:hover {
	color: #DF9443;
	transition: 0.2s;
}

.nav2 {
	position: relative;
	margin-top: 10px;
	margin-left: 15px;
	margin-right: 15px;
	align-self: center;
}

.nav2 a {
	width: 70px;
	height: auto;
	background-color: transparent;
	color: white;
	font-size: 18px;
	text-decoration: none;
}

.nav2 a:hover {
	color: #DF9443;
	transition: 0.2s;
}

#links a {
	text-decoration: underline;
}

/************************************/

#main {
	width: 100%;
	height: 750px;
	background-color: black;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
	align-content: flex-start;
	align-items: flex-start;
}

.link {
	display: block;
	position: relative;
	width: 40%;
	height: 80px;
	margin-top: 40px;
	margin-bottom: 20px;
	
	color: white;
	text-align: center;
	padding-top: 20px;
	font-size: 20px;
}

.link a {
	z-index: 2;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: transparent;
}

.link h3 {
	position: absolute;
	top: 10px;
	left: 20%;
	color: white;
	text-align: center;
	padding-top: 20px;
	font-size: 30px;
}

.link i {
	position: absolute;
	font-size: 36px;
	top: 30px;
	left: 78%;
	color: white;
}

.link::before {
	width: 98%;
	height: 84%;
	position: absolute;
	right: 1%;
	top: 8%;
	content: "";
	background-color: black;
	border-radius: 2px;
	transition: 0.15s;
	transition-timing-function: ease;
}

.link:hover:before {
	width: 0%;
	left: 1%;
	transition: 0.4s;
	transition-timing-function: ease;
}

/* home */
#link1 {
	background-image: linear-gradient(-110deg, rgba(215,30,30,1.0), rgba(30,30,50,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: 30px;
	color: white;
	text-decoration: none;
	transition: 0.2s;
}

.navBottom a:hover {
	font-size: 32px;
	color: black;
	transition: 0.2s;
}

#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;
}