@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Inter:wght@300&display=swap');
 
html {
	margin: 0;
	padding: 0;
	
	height: 100%;
	width: 100%;
}

img#jokerneb {
	position: fixed;
	bottom: 0;
	left: 0;
}

body {
	background: url("stars.png") repeat top center, linear-gradient(#430368, #6900a5, #df08ff);
	position: absolute;

	margin: 0;
	padding: 0;
	
	height: 100%;
	width: 100%;
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	color: #FFFFFF;
	font-family: 'Inter', Sans-Serif, serif;
	font-weight: 300;
}

main {
	border-radius: 50px;
	border: 1px solid #A142DB;
	
	height: calc(80% + 2px);
	width: calc(40% + 2px);
	
	max-height: 1002px;

	min-height: 852px;
	min-width: 742px;
}

header {
	background: radial-gradient(#d3c502, #f69909, #f14d0b);
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	
	display: flex;
	justify-content: center;
	
	height: calc(100% - 150px);
	width: 100%
}

header div#headerWrapper {
	text-align: center;
	
	margin-top: 10%;
	
	height: calc(100% - 100px);
	width: 100%;
}

header div#frame {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	
	border: 8px solid #FFFFFF;
	border-radius: 50%;
	
	height: 256px;
	width: 256px;
	
	margin: 0 auto 5% auto;
}

header div#frame div#oink {
    position: absolute;
    bottom: 42px;
    left: 122px;
    height: 10px;
    width: 6px;
}

header div#frame img {
	background-color: rgba(255, 255, 255, .1);
	border: 5px solid rgba(0, 0, 0, 0);
	border-radius: 50%;
	
	height: 240px;
	width: 240px;
}

header h1 {
	font-family: 'Audiowide', cursive;
	font-size: 62px;
	line-height: 78px;
	font-weight: 400;
	text-shadow: 0 0.25rem 1rem rgba(0,0,0,0.75);
}

header p#top {
	letter-spacing: 9.633px;
	font-size: 17px;
	line-height: 28px;
	text-shadow: 0 3px 10px rgb(0, 0, 0, 0.5)
}

header p#bottom {
	letter-spacing: 1.1333px;
	font-size: 22px;
	line-height: 40px;
	text-shadow: 0 3px 10px rgb(0, 0, 0, 0.5)
}

footer {
	background: #FFFFFF;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
	border-top: 3px solid #A142DB;
	
	height: 147px;
	width: 100%;
}

footer nav {
	display: flex;
	
	margin: 0 auto;
	padding: 36px 45px;
	
	height: 75px;
	width: calc(100% - 90px);
	max-width: 700px;
}

footer nav a.social {
	display: flex;
	justify-content: center; /* align item horizontally */
	align-items: center; /* align item vertically */
	
	border: 1px solid #A142DB;
	border-radius: 50%;
	
	margin-right: 35px;
	
	height: 73px;
	width: 73px;
	
	cursor: pointer;
	transition: all .3s ease-in-out;
}

footer nav a.social:hover {
	transform: scale(1.25);
}

footer nav a.social img {
	height: 50px;
	width: 50px;
}

footer nav a.social:hover img {
	transition: transform .7s ease-in-out;
	transform: rotate(360deg);
}

footer nav a#email {
	color: #FFFFFF;
	text-decoration:none;
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	background-color: #A142DB;
	border-radius: 37.5px;
	
	height: 75px;
	width: calc(100% - 440px);
	
	cursor: pointer;
	transition: all .3s ease-in-out;
}

footer nav a#email:hover {
	transform: scale(1.25);
}

footer nav a#email img {
	height: 16px;
	width: 25px;
}

footer nav a#email:hover img {
	transition: transform .7s ease-in-out;
	transform: rotate(360deg);
}