/* FONTS */

@font-face {
	font-family: 'Gotham Thin';
	src: url('/fonts/Gotham-Thin.otf') format('opentype');
}

@font-face {
	font-family: 'Gotham';
	src: url('/fonts/Gotham-Book.otf') format('opentype');
}

@font-face {
	font-family: 'Gotham Bold';
	src: url('/fonts/Gotham-Bold.otf') format('opentype');
}

#page-container {
/*	min-height: 100vh;*/
	width: 100%;
	display: flex;
	justify-content: center;
}

#content-wrap {
	max-width: 820px;
	padding-bottom:75px;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
}

body {
	background: url('/bg.png') repeat fixed;
	margin: auto;
}

h1 {
	font-family: 'Gotham Thin', sans-serif;
	color: #333;
	font-size: 48px;
	text-align: center;
	margin: 0;
	padding: 70px 10px;
	opacity: 0;
	animation: jump 1.5s, fadein 2s;
	animation-delay: .5s;
	animation-fill-mode: forwards;
	-webkit-animation: jump 1.5s, fadein 2s;
	-webkit-animation-delay: .5s;
	-webkit-animation-fill-mode: forwards;
}

h2 {
	font-family: 'Gotham Thin', sans-serif;
	color: #333333;
	font-size: 21px;
	text-align: left;
	font-style: italic;
	margin: 0;
	padding: 10px 0px;
	opacity: 0;
	animation: jump 1s, fadein 2s;
	animation-delay: 1s;
	animation-fill-mode: forwards;
	-webkit-animation: jump 1s, fadein 2s;
	-webkit-animation-delay: 1.5s;
	-webkit-animation-fill-mode: forwards;
}

.art {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-size: 0;
	opacity: 0;
	animation: jump 1s, fadein 2s;
	animation-delay: 1.5s;
	animation-fill-mode: forwards;
	-webkit-animation: jump 1s, fadein 2s;
	-webkit-animation-delay: .8s;
	-webkit-animation-fill-mode: forwards;
}

.art img {
	padding: 1rem 0 1rem 0;
	height: auto;
	max-width: 100%;
	flex-shrink: 1;
	transition: opacity 1s ease-in-out;
}

p {
	display: block;
	flex-wrap: nowrap;
	color: #333;
	font-family: 'Gotham';
	font-size: 16px;
	margin: 20px 0 20px 0;
	opacity: 0;
	animation: jump 1s, fadein 2s;
	animation-delay: 1s;
	animation-fill-mode: forwards;
	-webkit-animation: jump 1s, fadein 2s;
	-webkit-animation-delay: 1.5s;
	-webkit-animation-fill-mode: forwards;
}

#desc-text {
	align-content: flex-start;
	width: 100%;
}

b {
	font-family: 'Gotham Bold';
	color: #52c090;
}

a {
	font-family: 'Gotham Bold';
	color: #52c090;
}

small {
	font-size: 11px;
}

/* FOOTER */

#footer {
	background-color: rgba(0, 0, 0, .7);
	font-size: 20px;
	display: flex;
	padding: 20px 0 20px 0;
	position: fixed;
	bottom: 0;
	width: 100%;
	max-width: 820px;
	opacity: 0;
	animation: fadein .8s;
	animation-delay: 2.5s;
	animation-fill-mode: forwards;
	-webkit-animation: fadein .8s;
	-webkit-animation-delay: 2.5s;
	-webkit-animation-fill-mode: forwards;
}

#icons {
	display:flex;
	justify-content: space-around;
	width:100%;
}

@supports (-webkit-backdrop-filter:none) or (backdrop-filter:none) {
	#footer {
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
	}
}

a .fa-gradient {
	background-color: #ffffff;
	color: transparent;
	transition: .5s;
	background-clip: text;
	-webkit-transition: .5s;
	-webkit-background-clip: text;
}

a .fa-gradient:hover {
	background-color:#6ef1b8;
}

/* ANIMATIONS */

@keyframes jump {
	from {
		transform: translateY(50px);
	}

	to {
		transform: translateY(10px);
	}
}

@-webkit-keyframes jump {
	from {
		transform: translateY(50px);
	}

	to {
		transform: translateY(10px);
	}
}

@keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadein {

	/* Safari and Chrome */
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}
