* {
	margin: 0;
	padding: 0;
	font-family: 'Ubuntu', sans-serif;
	font-size: 100%;
}

body, html {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	font-family: 'Ubuntu', sans-serif;
	font-size: 100%;
	overflow: hidden;
}

.logo {
	max-width: 200px;
	height: auto;
}

#vanta-bg {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #333;
}

.vanta-content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
}

.vanta-content p {
	color: #1b1c1d;
	font-family: 'DM Sans', sans-serif;
	font-weight: 600;
}

.vanta-footer {
	position: fixed;
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	bottom: 0;
	text-align: center;
	padding: 0;
}

.vanta-footer p {
	font-family: 'Mulish', Sans-Serif;
	font-size: 1rem;
	font-weight: 400;
	color: rgb(54, 54, 54);
	letter-spacing: 0.12px;
	margin-bottom: 0.5rem;
}

.vanta-footer p a {
	color: rgb(20, 20, 20);
	text-decoration: underline;
}

.nav{
	width: 100%;
	height: 80px;
	position: absolute;
	top: 0; left: 0;
	z-index: 100;
}

.nav-content {
	width: 100%;
	max-width: 1100px;
	height: 100%;
	margin:auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.navbar a {
	font-family: "Rowdies", sans-serif;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.5px;
	color: #141414;
	text-decoration: none;
	-webkit-transition: 300ms ease-in-out;
	-o-transition: 300ms ease-in-out;
	transition: 300ms ease-in-out;
	padding: 4px 14px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin:auto;
}

.navbar a:hover {
	background: rgba(126, 126, 126, 0.85);
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: #0f0f0fa1;
}

@media screen and (max-width: 480px){
	.nav-content{
		-webkit-justify-content: 
space-around;
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}

	.navbar a {
		font-size: 1.4rem;
		padding: 4px 6px;
		margin-left: 0;
	}

	.vanta-footer p {
		font-size: 12px;
		margin-bottom: 0.3rem;
	}
}

@media screen and (max-width: 320px){
	.nav-content{
		-webkit-justify-content: 
space-around;
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}

	.navbar a{
		font-size: 1.3rem;
		padding: 4px 6px;
		margin-left: 0;
	}

	.vanta-footer p {
		font-size: 12px;
		margin-bottom: 0.2rem;
	}
}

